feature: initial commit
This commit is contained in:
commit
ce024ba87a
17 changed files with 1141 additions and 0 deletions
13
tests/01_module_import.test.ts
Normal file
13
tests/01_module_import.test.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import * as asserts from '@std/assert';
|
||||
|
||||
Deno.test({
|
||||
name: 'import fsdb',
|
||||
permissions: {
|
||||
env: true
|
||||
},
|
||||
fn: async () => {
|
||||
const fsdb = await import('../fsdb.ts');
|
||||
|
||||
asserts.assert(fsdb);
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue