fix(core): update

This commit is contained in:
2023-06-22 11:57:29 +02:00
parent d1be0d8ce2
commit 931a713ae7
7 changed files with 4584 additions and 11498 deletions

View File

@ -22,6 +22,11 @@ tap.test('should check equality', async () => {
smartexpect.expect('hithere').not.toEqual('hithere2');
});
tap.test('should check for regexp matching', async () => {
smartexpect.expect('hithere').toMatch(/hi/);
smartexpect.expect('hithere').not.toMatch(/ho/);
})
tap.test('should correctly state property presence', async () => {
const testObject = {
aprop: 'hello',