chore: lint code example 4th try
This commit is contained in:
parent
8cac586dee
commit
e215fb5c48
|
|
@ -188,7 +188,7 @@ Or...
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
filter: {
|
filter: {
|
||||||
filterTestGroups: testgroups => {
|
filterTestGroups: testgroups => {
|
||||||
return testgroups.filter((testgroups, index) => index % 2 === 0)
|
return testgroups.filter((testgroups, index) => index % 2 === 0);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
2
packages/playwright/types/test.d.ts
vendored
2
packages/playwright/types/test.d.ts
vendored
|
|
@ -1067,7 +1067,7 @@ interface TestConfig<TestArgs = {}, WorkerArgs = {}> {
|
||||||
* export default defineConfig({
|
* export default defineConfig({
|
||||||
* filter: {
|
* filter: {
|
||||||
* filterTestGroups: testgroups => {
|
* filterTestGroups: testgroups => {
|
||||||
* return testgroups.filter((testgroups, index) => index % 2 === 0)
|
* return testgroups.filter((testgroups, index) => index % 2 === 0);
|
||||||
* },
|
* },
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue