Skip to content

Commit

Permalink
test: increase the timeout for develop [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 22, 2022
1 parent b4f5448 commit 81a9268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/develop-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe("apm develop", function () {
const callback = jasmine.createSpy("callback")
apm.run(["develop", "fake-package"], callback)

waitsFor("waiting for develop to complete", () => callback.callCount === 1)
waitsFor("waiting for develop to complete", 60000, () => callback.callCount === 1)

runs(function () {
expect(callback.mostRecentCall.args[0]).toBeFalsy()
Expand Down

0 comments on commit 81a9268

Please sign in to comment.