1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| define([
| './intern'
| ], function (intern) {
|
| intern.environments = [
| { browserName: 'internet explorer', version: [ '9.0', '10.0', '11.0' ], platform: 'Windows 7' },
| // Intern 3.0.6 sometimes works on Edge
| { browserName: 'microsoftedge', platform: 'Windows 10' },
| { browserName: 'firefox', platform: 'Windows 10' },
| { browserName: 'chrome', platform: 'Windows 10' },
| { browserName: 'android', platform: 'Linux', version: '4.4', deviceName: 'Google Nexus 7 HD Emulator' }
| ];
|
| /* SauceLabs supports more max concurrency */
| intern.maxConcurrency = 4;
|
| intern.tunnel = 'SauceLabsTunnel';
|
| return intern;
| });
|
|