Reputation: 1
We use featureFlag values set in projects of playwright.config, for each test folder. This one project is injecting wrong future flag value (expected value is false but we get the error message that this is set to true); and test is flaky (but it never happened for any other project). This happens inly in CI, wasn't able to reproduce it locally.
projects: [
{
name: 'project-name',
use: {
featureFlags: {
ffone: true,
fftwo: false,
},
},
testMatch: ['**/frameworks/*.e2e.ts'],
},
was able to reproduce this issue running the tests
Upvotes: 0
Views: 18