fix(core): update

This commit is contained in:
2022-02-02 08:02:26 +01:00
parent 56fb434f7d
commit 9213e7905f
2 changed files with 9 additions and 3 deletions

View File

@ -36,4 +36,12 @@ tap.test('should be greater than', async () => {
smartexpect.expect(4).toBeLessThan(5);
})
tap.test('should correctly determine toContain', async () => {
const hello = {
socool: 'yes'
};
const testArray = [hello];
smartexpect.expect(testArray).toContain(hello);
})
tap.start();