build: update to latest bazel rules (#22558)

PR Close #22558
This commit is contained in:
Alex Eagle
2018-03-02 10:10:59 -08:00
parent ff7e2e3f1e
commit a3f7e30153
6 changed files with 19 additions and 33 deletions

View File

@ -527,7 +527,7 @@ const manifestUpdateHash = sha1(JSON.stringify(manifestUpdate));
expect(await driver.checkForUpdate()).toEqual(true);
serverUpdate.assertSawRequestFor('/quux.txt');
serverUpdate.clearRequests();
driver.updateClient(await scope.clients.get('default'));
await driver.updateClient(await scope.clients.get('default'));
expect(await makeRequest(scope, '/quux.txt')).toEqual('this is quux v2');
serverUpdate.assertNoOtherRequests();
});