Skip to content

Commit

Permalink
set timeout to an hr, run appui tests in node12, ?? not added til node14
Browse files Browse the repository at this point in the history
  • Loading branch information
aruniverse committed Jan 30, 2023
1 parent cada1ed commit b1e5d6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common/config/azure-pipelines/jobs/regression-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
demands:
- Agent.OS -equals $(platform)

timeoutInMinutes: 120
timeoutInMinutes: 60

workspace:
clean: all
Expand Down
8 changes: 4 additions & 4 deletions ui/scripts/setup-tests-noreact.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ global.WheelEvent = global.MouseEvent;
// See https://github.com/jsdom/jsdom/pull/2926
global.DOMRect = class DOMRect {
constructor(x, y, width, height) {
this.x = x ?? 0;
this.y = y ?? 0;
this.width = width ?? 0;
this.height = height ?? 0;
this.x = x || 0;
this.y = y || 0;
this.width = width || 0;
this.height = height || 0;
this.top = this.y;
this.left = this.x;
this.right = this.x + this.width;
Expand Down

0 comments on commit b1e5d6c

Please sign in to comment.