fix: test

This commit is contained in:
Chubby Granny Chaser
2025-11-23 20:34:05 +00:00
parent dc04cff378
commit c3880ce181
32 changed files with 5800 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import test from 'ava'
import { plus100 } from '../index'
test('sync function from native code', (t) => {
const fixture = 42
t.is(plus100(fixture), fixture + 100)
})

View File

@@ -0,0 +1,3 @@
{
"type": "module"
}

View File

@@ -0,0 +1,11 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"outDir": "lib",
"rootDir": "."
},
"include": ["*.ts"],
"exclude": ["lib"]
}