spiegel-keyman/core/tests/unit/wasm/package.json
Eberhard Beilharz fbfa3b5cc2
feat(core): add unit tests for the WASM version of Core API
Note that this requires adding an additional `km-core-node.mjs`
module (since the tests are run with node). We can't create one that
would work for both web and node - if we do trying to load the `km-core.js`
fails with `km-core.mjs: Could not resolve import "module".`
2025-01-20 18:22:56 +01:00

16 lines
308 B
JSON

{
"name": "wasm-tests",
"version": "1.0.0",
"description": "Unit tests for WASM version of Core",
"main": "tests.js",
"type": "module",
"scripts": {
"test": "mocha ."
},
"author": "SIL Global",
"license": "MIT",
"devDependencies": {
"chai": "^5.1.2",
"mocha": "^11.0.1"
}
}