feat(tstest): Enhance tstest with fluent API, suite grouping, tag filtering, fixture & snapshot testing, and parallel execution improvements
This commit is contained in:
@@ -17,9 +17,9 @@ const test3 = tap.test(
|
||||
async () => {
|
||||
expect(
|
||||
(await test1.testPromise).hrtMeasurement.milliSeconds <
|
||||
(await test2).hrtMeasurement.milliSeconds,
|
||||
(await test2.testPromise).hrtMeasurement.milliSeconds,
|
||||
).toBeTrue();
|
||||
expect((await test2.testPromise).hrtMeasurement.milliSeconds > 1000).toBeTrue();
|
||||
expect((await test2.testPromise).hrtMeasurement.milliSeconds >= 1000).toBeTrue();
|
||||
},
|
||||
);
|
||||
|
||||
@@ -46,4 +46,4 @@ const test7 = tap.test('my 7th test -> should print a colored string', async (to
|
||||
console.log(cs);
|
||||
});
|
||||
|
||||
tap.start();
|
||||
tap.start();
|
Reference in New Issue
Block a user