Skip to content

Commit

Permalink
FIX vue-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pubkey committed Dec 1, 2017
1 parent 4a149f4 commit ec2c708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/vue/test/e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ test.page('http://0.0.0.0:8888/multitab.html?frames=6')('leader-election: Exact

// wait until at least one becomes leader
let currentLeader = null;
await AsyncTestUtil.waitUntil(async() => {
await AsyncTestUtil.waitUntil(async () => {
let ret = false;
for (let i = 0; i < 6; i++) {
await t.switchToIframe('#frame_' + i);
Expand Down Expand Up @@ -98,7 +98,7 @@ test.page('http://0.0.0.0:8888/multitab.html?frames=6')('leader-election: Exact
// wait until next one becomes leader
await AsyncTestUtil.wait(200);
const leaders = [];
await AsyncTestUtil.waitUntil(async() => {
await AsyncTestUtil.waitUntil(async () => {
let ret = false;
for (let i = 0; i < 6; i++) {
if (i !== currentLeader) {
Expand Down

0 comments on commit ec2c708

Please sign in to comment.