Add very basic integration tests

This commit is contained in:
mrjvs
2023-09-28 19:45:41 +02:00
parent 01d56a49d0
commit 3ca04d8361
8 changed files with 25 additions and 6 deletions

2
tests/cjs/index.js Normal file
View File

@@ -0,0 +1,2 @@
require('../../lib/index.umd');
console.log('import successful!');

4
tests/cjs/package.json Normal file
View File

@@ -0,0 +1,4 @@
{
"main": "index.js",
"type": "commonjs"
}