diff --git a/test/kitchen.ts b/test/kitchen.ts index 2d8c695c..04a3c7d7 100644 --- a/test/kitchen.ts +++ b/test/kitchen.ts @@ -90,10 +90,27 @@ describe('🚰 kitchen sink', () => { path.join(stagingPath, 'gts.tgz'), path.join(tmpDir.name, 'gts.tgz') ); + + // TODO: DEBUG + console.dir( + { + LISTING_BEFORE: fs.readdirSync(path.join(tmpDir.name, 'kitchen')), + }, + {depth: 20} + ); + // It's important to use `-n` here because we don't want to overwrite // the version of gts installed, as it will trigger the npm install. spawn.sync(GTS, ['init', '-n'], opts); + // TODO: DEBUG + console.dir( + { + LISTING: fs.readdirSync(path.join(tmpDir.name, 'kitchen')), + }, + {depth: 20} + ); + // The `extends` field must use the local gts path. const tsconfigJson = fs.readFileSync( path.join(tmpDir.name, 'kitchen', 'tsconfig.json'),