2025-05-16 15:01:56 +00:00
|
|
|
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
2025-05-12 10:03:22 +00:00
|
|
|
import { SmartlogDestinationDevtools } from '../ts_destination_devtools/index.js';
|
|
|
|
|
2025-05-12 10:20:16 +00:00
|
|
|
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();
|
2025-05-12 10:03:22 +00:00
|
|
|
};
|
|
|
|
|
2025-05-12 10:20:16 +00:00
|
|
|
export default run();
|