jxdnsong
2020-10-23 a7929e6b3ec9ac17233f39e55a2b8ac63ea75f42
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;
});