File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import {
22
22
import { expectSuccessAndOutput } from './test-expectations' ;
23
23
import { withNodeTestInterop } from './test-interop' ;
24
24
25
- const TEST_IDENTIFIER = 'node-interop' ;
26
- const debug = debugFactory ( TEST_IDENTIFIER ) ;
25
+ const TEST_IDENTIFIER = 'integration- node-interop' ;
26
+ const debug = debugFactory ( ` ${ pkgName } : ${ TEST_IDENTIFIER } ` ) ;
27
27
28
28
const pkgMainPath = `${ __dirname } /../../${ pkgExports [ '.' ] . default } ` ;
29
29
const pkgPurePath = `${ __dirname } /../../${ pkgExports [ './pure' ] . default } ` ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {
21
21
type IMPORT_SPECIFIERS_UNDER_TEST
22
22
} from './test-config' ;
23
23
24
- const TEST_IDENTIFIER = 'node-smoke' ;
24
+ const TEST_IDENTIFIER = 'integration- node-smoke' ;
25
25
const TEST_TARGET : ( typeof IMPORT_SPECIFIERS_UNDER_TEST ) [ number ] = 'main' ; // * Or: 'pure'
26
26
const debug = debugFactory ( `${ pkgName } :${ TEST_IDENTIFIER } ` ) ;
27
27
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ import type { Debugger } from 'debug';
32
32
// TODO: ability to copy entire arbitrary directories recursively into fixture
33
33
// TODO: root
34
34
35
- const globalDebug = debugFactory ( 'jest-setup' ) ;
35
+ // TODO: change namespace to something short and sweet and without pkgName
36
+ const globalDebug = debugFactory ( `${ pkgName } :jest-setup` ) ;
36
37
37
38
globalDebug ( `pkgName: "${ pkgName } "` ) ;
38
39
globalDebug ( `pkgVersion: "${ pkgVersion } "` ) ;
You can’t perform that action at this time.
0 commit comments