Skip to content

Commit

Permalink
fix(deps): pull in version of gts that does not OOM error (#1780)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Jul 31, 2019
1 parent 168ad6b commit c09e6f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -45,7 +45,7 @@
"node": ">=8.10.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.9",
"@compodoc/compodoc": "^1.1.10",
"@types/chai": "^4.1.7",
"@types/execa": "^0.9.0",
"@types/minimist": "^1.2.0",
Expand All @@ -69,8 +69,8 @@
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"execa": "^1.0.0",
"gts": "^1.0.0",
"execa": "^2.0.3",
"gts": "^1.1.0",
"hard-rejection": "^2.1.0",
"intelli-espower-loader": "^1.0.1",
"js-green-licenses": "^1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions test/samples/test.compute.samples.ts
Expand Up @@ -12,11 +12,11 @@
// limitations under the License.

import {assert} from 'chai';
import {shellSync} from 'execa';
import * as execa from 'execa';

describe('Compute samples', () => {
it('should list all the VMs', async () => {
const res = shellSync('node ../samples/compute/listVMs');
const res = execa.sync('node ../samples/compute/listVMs', {shell: true});
assert.match(res.stdout, /VMs:/);
});
});

0 comments on commit c09e6f4

Please sign in to comment.