mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: update Windows skipped tests. (#6133)
The headful one I'm permanently skipping as I don't know what the issue is and I can't debug without getting my hands on a Windows machine. If anyone has one or is able to help, that'd be great! The other I'm deferring another month and will ping the FF folks :)
This commit is contained in:
@@ -170,6 +170,13 @@ export const itFailsWindowsUntilDate = (
|
||||
return it(description, body);
|
||||
};
|
||||
|
||||
export const itFailsWindows = (description: string, body: Mocha.Func) => {
|
||||
if (os.platform() === 'win32') {
|
||||
return xit(description, body);
|
||||
}
|
||||
return it(description, body);
|
||||
};
|
||||
|
||||
export const describeFailsFirefox = (
|
||||
description: string,
|
||||
body: (this: Mocha.Suite) => void
|
||||
|
||||
Reference in New Issue
Block a user