Skip to content

Commit

Permalink
fix test typos
Browse files Browse the repository at this point in the history
  • Loading branch information
addyosmani committed Nov 25, 2018
1 parent 3ee52bd commit f3f3f9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sample.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('quicklink tests', function () {
await page.goto('http://127.0.0.1:8080/demo/test-basic-usage.html');
await page.waitFor(1000);
expect(responseURLs).to.be.an('array');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/2.html');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/1.html');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/2.html');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/3.html');
});
Expand All @@ -31,7 +31,7 @@ describe('quicklink tests', function () {
await page.goto('http://127.0.0.1:8080/demo/test-es-modules.html');
await page.waitFor(1000);
expect(responseURLs).to.be.an('array');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/2.html');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/1.html');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/2.html');
expect(responseURLs).to.include('http://127.0.0.1:8080/demo/3.html');
});
Expand Down

0 comments on commit f3f3f9b

Please sign in to comment.