10 lines
395 B
TypeScript
10 lines
395 B
TypeScript
import { expect, tap } from '@push.rocks/tapbundle';
|
|
import { SmartlogDestinationDevtools } from '../ts_destination_devtools/index.js';
|
|
|
|
// Test we can create a destination instance
|
|
tap.test('should create a DevTools destination instance', async () => {
|
|
const devtoolsDestination = new SmartlogDestinationDevtools();
|
|
expect(devtoolsDestination).toBeTruthy();
|
|
});
|
|
|
|
export default tap.start(); |