mirror of
https://github.com/sstent/node.git
synced 2026-01-26 15:12:37 +00:00
32 lines
658 B
CoffeeScript
32 lines
658 B
CoffeeScript
# nodeunit test
|
|
|
|
{runTestWith} = require '../common/basic-test-base'
|
|
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)
|
|
|