fix(core): update

This commit is contained in:
2024-03-17 21:24:25 +01:00
parent 8909149af8
commit 046a0ff55f
10 changed files with 116 additions and 195 deletions

View File

@ -8,9 +8,13 @@ tap.test('should create a valid smartdeno instance', async () => {
});
tap.test('should download deno', async () => {
await testSmartdeno.init({
await testSmartdeno.start({
forceLocalDeno: true
});
})
tap.test('should execute a script', async () => {
await testSmartdeno.executeScript(`console.log("A script from deno!")`);
})
tap.start()