Update evaluation.spec.js

This commit is contained in:
Pavel Feldman 2020-01-07 15:33:41 -08:00 committed by GitHub
parent ee82b88c22
commit 86a2ff21f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROME, WEBKIT}) {
const {beforeAll, beforeEach, afterAll, afterEach} = testRunner;
describe('Page.evaluate', function() {
fit('should work', async({page, server}) => {
it('should work', async({page, server}) => {
const result = await page.evaluate(() => 7 * 3);
expect(result).toBe(21);
});