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();