From 488e688be9d6fc7afa1bafe2ea12717260a2597f Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Wed, 4 Dec 2019 10:13:47 -0800 Subject: [PATCH] remove fit --- test/jshandle.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jshandle.spec.js b/test/jshandle.spec.js index ca360c5ad6..f0c90055dc 100644 --- a/test/jshandle.spec.js +++ b/test/jshandle.spec.js @@ -97,7 +97,7 @@ module.exports.addTests = function({testRunner, expect, CHROME, FFOX, WEBKIT}) { else if (FFOX) expect(error.message).toContain('Object is not serializable'); }); - fit('should work with tricky values', async({page, server}) => { + it('should work with tricky values', async({page, server}) => { const aHandle = await page.evaluateHandle(() => ({a: 1})); const json = await aHandle.jsonValue(); expect(json).toEqual({a: 1});