diff --git a/test/test.js b/test/test.js index 6bbfc9ed..2d9210e6 100644 --- a/test/test.js +++ b/test/test.js @@ -1091,7 +1091,7 @@ describe('Page', function() { const promises = elements.map(element => element.evaluate(e => e.textContent)); expect(await Promise.all(promises)).toEqual(['A', 'B']); })); - it('should return ampty array if nothing is found', SX(async function() { + it('should return empty array if nothing is found', SX(async function() { await page.goto(EMPTY_PAGE); const elements = await page.$$('div'); expect(elements.length).toBe(0);