import { expect, tap } from '@push.rocks/tapbundle'; tap.test('This test should fail', async () => { console.log('This test will fail on purpose'); expect(true).toBeFalse(); }); tap.test('This test should pass', async () => { console.log('This test will pass'); expect(true).toBeTrue(); }); tap.start();