forked from carbon-design-system/ibm-products
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playwright.config.js
164 lines (145 loc) · 4.19 KB
/
playwright.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
* Copyright IBM Corp. 2024, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
const { devices, expect } = require('@playwright/test');
const path = require('path');
const { pkg } = require('./packages/ibm-products/src/settings');
const config = {
// https://playwright.dev/docs/api/class-testconfig#test-config-test-dir
testDir: path.join(__dirname, 'e2e'),
// https://playwright.dev/docs/api/class-testconfig#test-config-test-ignore
testIgnore: [],
// https://playwright.dev/docs/api/class-testconfig#test-config-test-match
testMatch: /.*-test(.avt|.vrt)?.e2e\.m?js$/,
// https://playwright.dev/docs/api/class-testconfig#test-config-timeout
timeout: 10000 * 30,
// https://playwright.dev/docs/test-timeouts
expect: { timeout: 100000 },
// https://playwright.dev/docs/api/class-testconfig#test-config-output-dir
outputDir: path.join(__dirname, '.playwright', 'results'),
snapshotDir: path.join(__dirname, '.playwright', 'snapshots'),
// https://playwright.dev/docs/test-parallel#parallelize-tests-in-a-single-file
// fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
use: {
baseURL: 'http://localhost:3000',
trace: 'on-first-retry',
},
projects: [
// Desktop
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
},
},
],
reporter: [
['line'],
[
'json',
{
outputFile: path.join(__dirname, '.playwright', 'results.json'),
},
],
[
'json',
{
outputFile: path.join(
__dirname,
'packages/ibm-products/.playwright',
'INTERNAL_AVT_REPORT_DO_NOT_USE.json'
),
},
],
],
};
const isDev = !!process.env.AVT;
if (isDev) {
// use a custom prefix in avt environment
pkg.prefix = `dev-prefix--${pkg.prefix}`;
}
let aChecker;
expect.extend({
async toHaveNoACViolations(page, id) {
if (!aChecker) {
aChecker = require('accessibility-checker');
const denylist = new Set([
'html_lang_exists',
'page_title_exists',
'skip_main_exists',
'html_skipnav_exists',
'aria_content_in_landmark',
'aria_child_tabbable',
'skip_main_described',
'target_spacing_sufficient',
]);
const ruleset = await aChecker.getRuleset('IBM_Accessibility');
const customRuleset = JSON.parse(JSON.stringify(ruleset));
customRuleset.id = 'Custom_Ruleset';
customRuleset.checkpoints = customRuleset.checkpoints.map(
(checkpoint) => {
checkpoint.rules = checkpoint.rules.filter((rule) => {
return !denylist.has(rule.id);
});
return checkpoint;
}
);
aChecker.addRuleset(customRuleset);
}
const result = await aChecker.getCompliance(page, id);
if (aChecker.assertCompliance(result.report) === 0) {
return {
pass: true,
};
} else {
return {
pass: false,
message: () => aChecker.stringifyResults(result.report),
};
}
},
});
expect.extend({
async toContainAStory(page, options) {
let pass;
try {
/**
* This isn't a foolproof way to determine that an actual story
* has been rendered, but it should determine if a storybook
* error page is present or not.
*/
await expect(page.locator('css=.story-wrapper')).toBeInViewport();
pass = true;
} catch (e) {
pass = false;
}
if (pass) {
return {
pass: true,
};
} else {
return {
pass: false,
message:
() => `An element with the "story-wrapper" class was not found at url:
${page.url()}
The url is probably invalid and does not render a story.
Check the url locally, and verify the parameters passed to visitStory are correct.
{
component: ${options.component}
story: ${options.story}
id: ${options.id}
globals: ${JSON.stringify(options.globals)}
args: ${JSON.stringify(options.args)},
}
`,
};
}
},
});
module.exports = config;