fix(core): update
This commit is contained in:
16
test/test.ts
Normal file
16
test/test.ts
Normal file
@ -0,0 +1,16 @@
|
||||
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()
|
Reference in New Issue
Block a user