remove fit
This commit is contained in:
parent
66b07767b9
commit
488e688be9
|
|
@ -97,7 +97,7 @@ module.exports.addTests = function({testRunner, expect, CHROME, FFOX, WEBKIT}) {
|
||||||
else if (FFOX)
|
else if (FFOX)
|
||||||
expect(error.message).toContain('Object is not serializable');
|
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 aHandle = await page.evaluateHandle(() => ({a: 1}));
|
||||||
const json = await aHandle.jsonValue();
|
const json = await aHandle.jsonValue();
|
||||||
expect(json).toEqual({a: 1});
|
expect(json).toEqual({a: 1});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue