We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
e2e
1 parent cb34f19 commit 8daab7cCopy full SHA for 8daab7c
e2e/fixtures/percy.ts
@@ -14,7 +14,9 @@ export class PercyPage {
14
private title(): string {
15
// Skip the filename
16
const paths = this.testInfo.titlePath.slice(1);
17
- return paths.join(' | ');
+ // Add an "e2e" prefix to differentiate the snapshots from the QUnit tests.
18
+ // This address the visual changes caused by the font not loading in QUnit tests (#9052).
19
+ return ['e2e'].concat(paths).join(' | ');
20
}
21
22
async snapshot(options?: Parameters<typeof percySnapshot>[2]) {
0 commit comments