first post

This commit is contained in:
2012-05-25 09:03:56 -04:00
commit 6a753904b7
609 changed files with 252648 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# 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)