mirror of
https://github.com/sstent/node.git
synced 2026-01-26 15:12:37 +00:00
37 lines
882 B
JavaScript
37 lines
882 B
JavaScript
// Generated by CoffeeScript 1.3.2
|
|
(function() {
|
|
var chromeDesired, configHelper, explorerDesired, firefoxDesired, nameBase, remoteWdConfig, runTestWith;
|
|
|
|
runTestWith = require('../common/basic-test-base').runTestWith;
|
|
|
|
configHelper = require('./config-helper');
|
|
|
|
remoteWdConfig = configHelper.getRemoteWdConfig();
|
|
|
|
nameBase = "saucelabs basic test - ";
|
|
|
|
chromeDesired = {
|
|
name: nameBase + 'chrome',
|
|
browserName: 'chrome'
|
|
};
|
|
|
|
firefoxDesired = {
|
|
name: nameBase + 'firefox',
|
|
browserName: 'firefox'
|
|
};
|
|
|
|
explorerDesired = {
|
|
name: nameBase + 'explorer',
|
|
browserName: 'iexplore',
|
|
version: '9',
|
|
platform: 'Windows 2008'
|
|
};
|
|
|
|
exports.wd = {
|
|
chrome: runTestWith(remoteWdConfig, chromeDesired),
|
|
firefox: runTestWith(remoteWdConfig, firefoxDesired),
|
|
explorer: runTestWith(remoteWdConfig, explorerDesired)
|
|
};
|
|
|
|
}).call(this);
|