Asserts that a value is a array
.
Symbol
Matchers.toBeArray
expect([1]).toBeArray();
expect(new Array(1)).toBeArray();
expect({}).not.toBeArray();
Symbol
Asserts that a value is a array
.
expect([1]).toBeArray();
expect(new Array(1)).toBeArray();
expect({}).not.toBeArray();