ci: upgrade to node 8 and Bazel 0.8 (#20807)

Closes #19648

PR Close #20807
This commit is contained in:
Alex Eagle
2017-12-05 11:36:08 -08:00
committed by Igor Minar
parent 7cabaa0ae7
commit 6790e02a13
9 changed files with 16 additions and 18 deletions

View File

@ -163,7 +163,7 @@ describe('ngc transformer command-line', () => {
const exitCode = main(['-p', 'not-exist'], errorSpy);
expect(errorSpy).toHaveBeenCalledTimes(1);
expect(errorSpy.calls.mostRecent().args[0]).toContain('no such file or directory');
expect(errorSpy.calls.mostRecent().args[0]).toContain('at Error (native)');
expect(errorSpy.calls.mostRecent().args[0]).toContain('at Object.fs.lstatSync');
expect(exitCode).toEqual(2);
});