Skip to content

Commit

Permalink
Adding additional time for GH to run tests before timing out
Browse files Browse the repository at this point in the history
  • Loading branch information
kfitzgerald committed May 23, 2023
1 parent a6c418b commit 3baa3da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/ad_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ describe('Ad', () => {
const setMetricsBulkHandler = TestUtil.setMetricsBulkHandler.bind(TestUtil);
const setAdsHandler = TestUtil.setAdsHandler.bind(TestUtil);

before((done) => {
before(function (done) {
this.timeout(10000);

// make us a dom
TestUtil.setupEnvironment();

Expand Down
4 changes: 3 additions & 1 deletion test/auto_page_view_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ describe('AutoPageView', () => {
const resetDocument = TestUtil.resetDocument.bind(TestUtil);
const setMetricsBulkHandler = TestUtil.setMetricsBulkHandler.bind(TestUtil);

before((done) => {
before(function (done) {
this.timeout(10000);

// make us a dom
TestUtil.setupEnvironment();

Expand Down

0 comments on commit 3baa3da

Please sign in to comment.