smartdeno/test/test.ts
2024-03-17 00:53:32 +01:00

17 lines
392 B
TypeScript

import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import * as smartdeno from '../ts/index.js'
let testSmartdeno: smartdeno.SmartDeno;
tap.test('should create a valid smartdeno instance', async () => {
testSmartdeno = new smartdeno.SmartDeno();
});
tap.test('should download deno', async () => {
await testSmartdeno.init({
forceLocalDeno: true
});
})
tap.start()