mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
Remove redundant expectations
The remaining expectations implicitly check whether the objects are arrays.
This commit is contained in:
parent
2f22c2c7cb
commit
95cfc67450
@ -20,7 +20,6 @@ describe('Array', () => {
|
||||
const array = ['a', 'b', 'c'];
|
||||
const deserialized = ArrayType.deserialize(array);
|
||||
|
||||
expect(Array.isArray(deserialized)).toEqual(true);
|
||||
expect(deserialized).toEqual(['a', 'b', 'c']);
|
||||
});
|
||||
|
||||
@ -29,7 +28,6 @@ describe('Array', () => {
|
||||
|
||||
const deserialized = ArrayType.deserialize(object);
|
||||
|
||||
expect(Array.isArray(deserialized)).toEqual(true);
|
||||
expect(deserialized).toEqual(['zero', 'one', 'two']);
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user