mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 05:37:20 +03:00
chore: verify chromium builds (#21730)
This commit is contained in:
parent
7879cf30f0
commit
f47a8a677c
@ -884,7 +884,8 @@ export class Registry {
|
||||
const usedBrowserPath = descriptor.dir;
|
||||
const browserRevision = parseInt(descriptor.revision, 10);
|
||||
// Old browser installations don't have marker file.
|
||||
const shouldHaveMarkerFile = (browserName === 'chromium' && browserRevision >= 786218) ||
|
||||
// We switched chromium from 999999 to 1000, 300000 is the new Y2K.
|
||||
const shouldHaveMarkerFile = (browserName === 'chromium' && (browserRevision >= 786218 || browserRevision < 300000)) ||
|
||||
(browserName === 'firefox' && browserRevision >= 1128) ||
|
||||
(browserName === 'webkit' && browserRevision >= 1307) ||
|
||||
// All new applications have a marker file right away.
|
||||
|
Loading…
Reference in New Issue
Block a user