We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f11ca commit facd05bCopy full SHA for facd05b
container/snippets/package.json
@@ -18,7 +18,6 @@
18
},
19
"devDependencies": {
20
"chai": "^4.2.0",
21
- "execa": "^1.0.0",
22
"mocha": "^6.0.0"
23
}
24
container/snippets/system-test/sample.test.js
@@ -16,11 +16,11 @@
16
'use strict';
17
const {assert} = require('chai');
-const execa = require('execa');
+const {execSync} = require('child_process');
describe('container samples', () => {
it('should run the quickstart', async () => {
- const {stdout} = await execa.shell('node quickstart');
+ const stdout = execSync('node quickstart');
assert.match(stdout, /Clusters:/);
25
});
26
0 commit comments