Skip to content

Commit

Permalink
tools(client-property-dds): remove mocha-ts scripts
Browse files Browse the repository at this point in the history
test:mocha-ts* are not usable per several issues with ts-node (10.9.2 or earlier):
- TypeStrong/ts-node#2000 no tsconfig extends multiple files support
- TypeStrong/ts-node#1967 lack of .ts + ESM understanding
- failure to resolve .js extensions using CommonJS
  • Loading branch information
jason-ha committed Mar 13, 2024
1 parent e84e8a9 commit d0e21c9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions experimental/PropertyDDS/packages/property-dds/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@
"prettier:fix": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
"test": "npm run test:mocha",
"test:mocha": "npm run test:mocha:esm && echo skipping cjs due to high overhead - npm run test:mocha:cjs",
"test:mocha-ts": "cross-env FLUID_TEST_VERBOSE=1 TS_NODE_PROJECT=./src/test/tsconfig.json mocha --require ts-node/register --extensions ts,tsx \"src/test/**/*.spec.ts\" --exit --timeout 1500000",
"test:mocha-ts-inspect": "cross-env FLUID_TEST_VERBOSE=1 TS_NODE_PROJECT=./src/test/tsconfig.json mocha --inspect-brk --require ts-node/register --extensions ts,tsx \"src/test/**/*.spec.ts\" --exit --timeout 1500000",
"test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit",
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
Expand Down

0 comments on commit d0e21c9

Please sign in to comment.