10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { tap, expect } from '@push.rocks/tapbundle';
|
|
|
|
tap.test('should create a platform service', async () => {});
|
|
|
|
tap.test('stop', async () => {
|
|
await tap.stopForcefully();
|
|
});
|
|
|
|
export default tap.start();
|