Skip to content

Commit 54d3dfa

Browse files
committed
test: shorten debugging namespace identifiers
1 parent 0b869bb commit 54d3dfa

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

test/integration/integration-node-interop.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
import { expectSuccessAndOutput } from './test-expectations';
2323
import { withNodeTestInterop } from './test-interop';
2424

25-
const TEST_IDENTIFIER = 'integration-node-interop';
25+
const TEST_IDENTIFIER = 'node-interop';
2626
const debug = debugFactory(`${pkgName}:${TEST_IDENTIFIER}`);
2727

2828
const pkgMainPath = `${__dirname}/../../${pkgExports['.'].default}`;

test/integration/integration-node-smoke.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
type IMPORT_SPECIFIERS_UNDER_TEST
2222
} from './test-config';
2323

24-
const TEST_IDENTIFIER = 'integration-node-smoke';
24+
const TEST_IDENTIFIER = 'node-smoke';
2525
const TEST_TARGET: (typeof IMPORT_SPECIFIERS_UNDER_TEST)[number] = 'main'; // * Or: 'pure'
2626
const debug = debugFactory(`${pkgName}:${TEST_IDENTIFIER}`);
2727

test/setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import type { Debugger } from 'debug';
3232
// TODO: ability to copy entire arbitrary directories recursively into fixture
3333
// TODO: root
3434

35-
// TODO: change namespace to something short and sweet and without pkgName
3635
const globalDebug = debugFactory(`${pkgName}:jest-setup`);
3736

3837
globalDebug(`pkgName: "${pkgName}"`);

0 commit comments

Comments
 (0)