We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ab6382 commit 95d9ee6Copy full SHA for 95d9ee6
1 file changed
tests/legacy-cli/e2e/initialize/300-log-environment.ts
@@ -1,4 +1,4 @@
1
-import { ng } from '../utils/process';
+import { exec, ng } from '../utils/process';
2
3
export default async function () {
4
console.log('Environment:');
@@ -13,5 +13,6 @@ export default async function () {
13
console.log(` ${envName}: ${process.env[envName]!.replace(/[\n\r]+/g, '\n ')}`);
14
});
15
16
+ await exec('which', 'ng', 'yarn', 'npm');
17
await ng('version');
18
}
0 commit comments