Test cleanup and fixes [a-b]
This commit is contained in:
@ -5,7 +5,11 @@ const isPlainObject = require('./isPlainObject.js');
|
||||
test('isPlainObject is a Function', () => {
|
||||
expect(isPlainObject).toBeInstanceOf(Function);
|
||||
});
|
||||
t.equal(isPlainObject({ a: 1 }), true, 'Returns true for a plain object');
|
||||
t.equal(isPlainObject(new Map()), false, 'Returns false for a Map (example of non-plain object)');
|
||||
test('Returns true for a plain object', () => {
|
||||
expect(isPlainObject({ a: 1 }), true).toBe()
|
||||
});
|
||||
test('Returns false for a Map (example of non-plain object)', () => {
|
||||
expect(isPlainObject(new Map()), false).toBe()
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user