fix(core): update

This commit is contained in:
2022-01-21 17:37:30 +01:00
parent 998827f1bf
commit 6f5ceacad2
5 changed files with 21 additions and 5 deletions

View File

@ -17,4 +17,9 @@ tap.test('async tests', async (toolsArg) => {
await smartexpect.expectAsync(deferred.promise).not.toBeTypeofBoolean();
});
tap.test('should check equality', async () => {
smartexpect.expect('hithere').toEqual('hithere');
smartexpect.expect('hithere').not.toEqual('hithere2');
})
tap.start();