13 lines
440 B
TypeScript
13 lines
440 B
TypeScript
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|
import { SmartlogDestinationDevtools } from '../ts_destination_devtools/index.js';
|
|
|
|
export const run = async function() {
|
|
tap.test('should create a DevTools destination instance in browser', async () => {
|
|
const devtoolsDestination = new SmartlogDestinationDevtools();
|
|
expect(devtoolsDestination).toBeTruthy();
|
|
});
|
|
|
|
return await tap.start();
|
|
};
|
|
|
|
export default run(); |