Skip to content

Commit

Permalink
Disable flaky test enablePullRequestAutoMerge
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Feb 23, 2021
1 parent 8fd1b56 commit 4b82f6a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));

let options: ValidConfigOptions;

describe('enablePullRequestAutoMerge', () => {
// causes flaky test runs on CI because parallel builds are racing each other
// might also be an issue with Github's API being slow at updating after a mutation happens
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('enablePullRequestAutoMerge', () => {
beforeEach(async () => {
options = {
accessToken: await getDevAccessToken(),
Expand Down

0 comments on commit 4b82f6a

Please sign in to comment.