Skip to content

Commit

Permalink
Merge pull request #7352 from p12tic/disable-flaky-www
Browse files Browse the repository at this point in the history
e2e: Disable several flaky tests
  • Loading branch information
p12tic committed Jan 2, 2024
2 parents 174daa6 + 1b3b480 commit a868a0f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion smokes-react/tests/buildsnavigation.spec.ts
Expand Up @@ -51,7 +51,8 @@ test.describe('previousnextlink', function() {

test.describe('forceandstop', function() {
test('should create a build with a dedicated reason and stop it during execution',
async ({page}) => {
async ({page, browserName}) => {
test.skip(browserName === 'webkit', 'https://github.com/buildbot/buildbot/issues/7307');

await BuilderPage.gotoForce(page, "slowruntests", "force");
await ForcePage.clickStartButtonAndWaitRedirectToBuild(page);
Expand Down
4 changes: 3 additions & 1 deletion smokes-react/tests/reason_force.spec.ts
Expand Up @@ -42,7 +42,9 @@ test.describe('force and cancel', function() {
await ForcePage.clickCancelButton(page);
});

test('should create a build with a dedicated reason and Start it', async ({page}) => {
test('should create a build with a dedicated reason and Start it',
async ({page, browserName}) => {
test.skip(browserName === 'webkit', 'https://github.com/buildbot/buildbot/issues/7355');
await BuilderPage.gotoBuildersList(page);
await BuilderPage.goto(page, "runtests");
await BuilderPage.gotoForce(page, "runtests", "force");
Expand Down
4 changes: 3 additions & 1 deletion smokes-react/tests/rebuilds.spec.ts
Expand Up @@ -25,7 +25,9 @@ test.describe('rebuilds', function() {
await HomePage.waitAllBuildsFinished(page);
});

test('should navigate to a dedicated build and to use the rebuild button', async ({page}) => {
test('should navigate to a dedicated build and to use the rebuild button',
async ({page, browserName}) => {
test.skip(browserName === 'webkit', 'https://github.com/buildbot/buildbot/issues/7308');
await BuilderPage.gotoBuildersList(page);
await BuilderPage.goto(page, "runtests");
const lastbuild = await BuilderPage.getLastFinishedBuildNumber(page);
Expand Down

0 comments on commit a868a0f

Please sign in to comment.