remove redundant test folder

This commit is contained in:
mrjvs
2023-09-10 23:57:00 +02:00
parent b120b90b02
commit d24146e114
4 changed files with 0 additions and 19 deletions

View File

@@ -1 +0,0 @@
This folder is only for simple library usage tests in `CJS` and `UMD`. Real unit tests are at `src/__test__`.

View File

@@ -1,6 +0,0 @@
const { makeProviders, makeStandardFetcher, targets } = require('../lib/index.umd.js');
const providers = makeProviders({
fetcher: makeStandardFetcher(fetch),
target: targets.BROWSER,
});

View File

@@ -1,6 +0,0 @@
import { makeProviders, makeStandardFetcher } from '../lib/index.mjs';
const providers = makeProviders({
fetcher: makeStandardFetcher(fetch),
target: targets.BROWSER,
});

View File

@@ -1,6 +0,0 @@
{
"scripts": {
"start:umd": "node index.mjs",
"start:cjs": "node index.js"
}
}