diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 00:24:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 00:24:32 +0900 |
| commit | aaa40e34c3cce3c0d6ff8e6020b8830b4e5f320f (patch) | |
| tree | 2c89726444183b123f821a01a45d9555903fdab0 /test | |
| parent | refactor: use TS_NODE_PROJECT instead of TS_NODE_COMPILER_OPTIONS (diff) | |
| download | sharkey-aaa40e34c3cce3c0d6ff8e6020b8830b4e5f320f.tar.gz sharkey-aaa40e34c3cce3c0d6ff8e6020b8830b4e5f320f.tar.bz2 sharkey-aaa40e34c3cce3c0d6ff8e6020b8830b4e5f320f.zip | |
fix comment
Diffstat (limited to 'test')
| -rw-r--r-- | test/fetch-resource.ts | 4 | ||||
| -rw-r--r-- | test/get-file-info.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/fetch-resource.ts b/test/fetch-resource.ts index ba1c530e8a..6f976faa76 100644 --- a/test/fetch-resource.ts +++ b/test/fetch-resource.ts @@ -2,10 +2,10 @@ * Tests for Fetch resource * * How to run the tests: - * > TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true npx mocha test/fetch-resource.ts --require ts-node/register + * > npx cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true npx mocha test/fetch-resource.ts --require ts-node/register * * To specify test: - * > TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true npx mocha test/fetch-resource.ts --require ts-node/register -g 'test name' + * > npx cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true npx mocha test/fetch-resource.ts --require ts-node/register -g 'test name' */ process.env.NODE_ENV = 'test'; diff --git a/test/get-file-info.ts b/test/get-file-info.ts index 312b225aa2..8757d5a901 100644 --- a/test/get-file-info.ts +++ b/test/get-file-info.ts @@ -2,10 +2,10 @@ * Tests for detection of file information * * How to run the tests: - * > TS_NODE_FILES=true npx mocha test/get-file-info.ts --require ts-node/register + * > npx cross-env TS_NODE_FILES=true npx mocha test/get-file-info.ts --require ts-node/register * * To specify test: - * > TS_NODE_FILES=true npx mocha test/get-file-info.ts --require ts-node/register -g 'test name' + * > npx cross-env TS_NODE_FILES=true npx mocha test/get-file-info.ts --require ts-node/register -g 'test name' */ import * as assert from 'assert'; |