|
1 | 1 | {
|
2 | 2 | "name": "testdouble",
|
3 |
| - "version": "3.18.0", |
| 3 | + "version": "3.19.0", |
4 | 4 | "description": "A minimal test double library for TDD with JavaScript",
|
5 | 5 | "homepage": "https://github.com/testdouble/testdouble.js",
|
6 | 6 | "author": {
|
|
41 | 41 | "style": "run-p style:js style:ts",
|
42 | 42 | "style:js": "standard --fix",
|
43 | 43 | "style:ts": "standard --fix --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin \"**/*.ts\"",
|
44 |
| - "test": "run-s test:unit test:safe test:esm test:esm-auto-loader test:no-loader-esm test:example", |
| 44 | + "test": "run-s test:unit test:safe test:esm test:no-loader-esm test:example", |
45 | 45 | "test:unit": "teenytest --helper test/helper.js \"test/unit/**/*.test.{js,ts}\"",
|
46 | 46 | "test:safe": "teenytest --helper test/helper.js \"test/safe/**/*.test.{js,ts}\"",
|
47 | 47 | "test:esm": "cross-env NODE_OPTIONS=\"--loader=quibble\" TS_NODE_IGNORE=\"node_modules,notypescript\" ./test/safe-esm/teenytest-proxy.js --helper test/helper.js test/safe-esm/replace.test.js",
|
48 |
| - "test:esm-auto-loader": "node test/support/supports-auto-load.js not || cross-env TS_NODE_IGNORE=\"node_modules,notypescript\" ./test/safe-esm/teenytest-proxy.js --helper test/helper.js test/safe-esm/replace.test.js", |
49 |
| - "test:no-loader-esm": "node test/support/supports-auto-load.js || cross-env TS_NODE_IGNORE=\"node_modules,notypescript\" teenytest test/helper.js './test/safe-esm/*.no-loader-test.{mjs,js}'", |
| 48 | + "test:esm-auto-loader": "node test/esm-lib/supports-auto-load.js not || TS_NODE_IGNORE=\"node_modules,notypescript\" ./test/safe-esm/teenytest-proxy.js --helper test/helper.js test/safe-esm/replace.test.js", |
| 49 | + "test:no-loader-esm": "node test/esm-lib/supports-auto-load.js || cross-env TS_NODE_IGNORE=\"node_modules,notypescript\" teenytest test/helper.js './test/safe-esm/*.no-loader-test.{mjs,js}'", |
50 | 50 | "test:ci": "npm run compile && run-p style test && echo \"All done!\"",
|
51 |
| - "test:example": "run-s test:example:babel test:example:jest test:example:jest-broken test:example:node test:example:node-ava test:example:node-esm test:example-esm-auto-loader", |
52 |
| - "test:example-esm-auto-loader": "node test/support/supports-auto-load.js not || npm run test:example:node-esm-auto-loader", |
| 51 | + "test:example": "run-s test:example:babel test:example:jest test:example:jest-broken test:example:node test:example:node-ava test:example:node-esm", |
| 52 | + "test:example-esm-auto-loader": "node test/esm-lib/supports-auto-load.js not || npm run test:example:node-esm-auto-loader", |
53 | 53 | "test:example:babel": "bash ./script/run-examples babel",
|
54 | 54 | "test:example:jest": "bash ./script/run-examples jest",
|
55 | 55 | "test:example:jest-broken": "bash ./script/run-examples jest-broken",
|
|
0 commit comments