-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7434 from spalger/transform/removeFunctionalIIFEW…
…rappers [functional tests] remove extra IIFE wappers
- Loading branch information
Showing
26 changed files
with
2,265 additions
and
2,387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import { bdd, remote, scenarioManager, defaultTimeout } from '../../../support'; | ||
|
||
(function () { | ||
bdd.describe('console app', function () { | ||
this.timeout = defaultTimeout; | ||
bdd.describe('console app', function () { | ||
this.timeout = defaultTimeout; | ||
|
||
bdd.before(function () { | ||
return remote.setWindowSize(1200,800); | ||
}); | ||
|
||
require('./_console'); | ||
bdd.before(function () { | ||
return remote.setWindowSize(1200,800); | ||
}); | ||
}()); | ||
|
||
require('./_console'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import { bdd, remote, scenarioManager, defaultTimeout } from '../../../support'; | ||
|
||
(function () { | ||
bdd.describe('dashboard app', function () { | ||
this.timeout = defaultTimeout; | ||
bdd.describe('dashboard app', function () { | ||
this.timeout = defaultTimeout; | ||
|
||
bdd.before(function () { | ||
return remote.setWindowSize(1200,800); | ||
}); | ||
|
||
require('./_dashboard'); | ||
bdd.before(function () { | ||
return remote.setWindowSize(1200,800); | ||
}); | ||
}()); | ||
|
||
require('./_dashboard'); | ||
}); |
Oops, something went wrong.