File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import {
2222import { expectSuccessAndOutput } from './test-expectations' ;
2323import { withNodeTestInterop } from './test-interop' ;
2424
25- const TEST_IDENTIFIER = 'integration- node-interop' ;
26- const debug = debugFactory ( ` ${ pkgName } : ${ TEST_IDENTIFIER } ` ) ;
25+ const TEST_IDENTIFIER = 'node-interop' ;
26+ const debug = debugFactory ( TEST_IDENTIFIER ) ;
2727
2828const pkgMainPath = `${ __dirname } /../../${ pkgExports [ '.' ] . default } ` ;
2929const pkgPurePath = `${ __dirname } /../../${ pkgExports [ './pure' ] . default } ` ;
Original file line number Diff line number Diff 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' ;
2525const TEST_TARGET : ( typeof IMPORT_SPECIFIERS_UNDER_TEST ) [ number ] = 'main' ; // * Or: 'pure'
2626const debug = debugFactory ( `${ pkgName } :${ TEST_IDENTIFIER } ` ) ;
2727
Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ 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
36- const globalDebug = debugFactory ( `${ pkgName } :jest-setup` ) ;
35+ const globalDebug = debugFactory ( 'jest-setup' ) ;
3736
3837globalDebug ( `pkgName: "${ pkgName } "` ) ;
3938globalDebug ( `pkgVersion: "${ pkgVersion } "` ) ;
You can’t perform that action at this time.
0 commit comments