From 4e5208f44809e0998e7cc91927d1d5d919aec08e Mon Sep 17 00:00:00 2001 From: mizdra Date: Fri, 29 Sep 2017 15:28:05 +0900 Subject: [PATCH] fix typo --- test/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.js b/test/test.js index a41f5bccc1a91..5cc4c330200cd 100644 --- a/test/test.js +++ b/test/test.js @@ -593,7 +593,7 @@ describe('Page', function() { expect(error.message).toContain('Cannot navigate to invalid URL'); })); it('should fail when navigating to bad SSL', SX(async function() { - // Make sure that network events do not emit 'undefind'. + // Make sure that network events do not emit 'undefined'. // @see https://crbug.com/750469 page.on('request', request => expect(request).toBeTruthy()); page.on('requestfinished', request => expect(request).toBeTruthy()); @@ -734,7 +734,7 @@ describe('Page', function() { // Expect navigation to succeed. expect(response.ok).toBe(true); })); - it('should not leak listeners durint navigation', SX(async function() { + it('should not leak listeners during navigation', SX(async function() { let warning = null; const warningHandler = w => warning = w; process.on('warning', warningHandler); @@ -1343,7 +1343,7 @@ describe('Page', function() { 'Keypress: ^ 94 94 94 []', 'Keyup: ^ 54 []'].join('\n')); })); - it('should send propery codes while typing with shift', SX(async function(){ + it('should send proper codes while typing with shift', SX(async function(){ await page.goto(PREFIX + '/input/keyboard.html'); const keyboard = page.keyboard; await keyboard.down('Shift');