Skip to content

Commit 480bc74

Browse files
committed
fix(chips): isOk => doesNotThrow
1 parent 4f47a91 commit 480bc74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/chips/ChipSet.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ test('chip is rendered with computeBoundingRect method prop if is not filter var
417417
test('basic variant ChipSet will not throw error if chip missing id', () => {
418418
const stub = <ChipSet><Chip /></ChipSet>;
419419
const render = () => shallow<ChipSet>(stub);
420-
assert.isOk(render);
420+
assert.doesNotThrow(render);
421421
});
422422

423423

0 commit comments

Comments
 (0)