Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eugene Shen
todomvc
Commits
980cf54d
Commit
980cf54d
authored
Jul 07, 2015
by
Sam Saccone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
👋
bye sauce hello travis
parent
260d2fd3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
44 deletions
+20
-44
.travis.yml
.travis.yml
+6
-6
tests/run.sh
tests/run.sh
+2
-15
tests/test.js
tests/test.js
+12
-23
No files found.
.travis.yml
View file @
980cf54d
...
...
@@ -8,13 +8,8 @@ node_js:
-
'
0.12'
notifications
:
irc
:
'
irc.freenode.org#tastejs'
addons
:
sauce_connect
:
true
env
:
# add in tokens for sauce labs
global
:
-
secure
:
gd7Y1sZyUc4+eck+c4cZ19WdVkmvvfE16fegUMZ9/BMRVYaaEfLZ/805+mOPccAebu5nuGKX0dAjXBwDGcAk2T9YvXpgl8GHu5sAHT3ax0XTibwW7Je2ayf8dJqTO9eRelY616v2mYUlj9QMmbWCB2zESsscY3hi2DQAPeueMdo=
-
secure
:
av1hgfvD9UpQr59Q2qcyC0WmiUvRivJHzdcrwj3uYiIJLxxpXv00EC4PzqMZAVREOaQEK1s9FwFVSYn8FbvtvWp5TnWNvSXUXCSjc+I0MYhxbtvcAuKlDzayHSfp17bt0BY3pxB/1BdwMdPwDYumEULphKOmsLr4ocsJCfng2Ds=
# GH_OAUTH_TOKEN is the oauth token generated as described at
# https://help.github.com/articles/creating-an-oauth-token-for-command-line-use
#
...
...
@@ -29,7 +24,12 @@ env:
-
secure
:
'
fHgfjMpYuliwMr2QLnjYZExIViNrxprf9dhXRBLZ6P9Hz7P6m1BMYrI/xEG8X+fFbCi0+n3AXh8SEMHi9ou/Pty/cx12z4w/z3B2BHMxh4XBwpZHs+AB4IXkLiwwWoP4QFy4vTipgYnMDMq9CRhlRbhZEpenQBmaTEc472By1uM='
-
GH_OWNER
:
tastejs
-
GH_PROJECT_NAME
:
todomvc
-
CHROME_PATH
:
'
/home/travis/build/tastejs/todomvc/chrome-linux/chrome'
before_install
:
-
export DISPLAY=:99.0
-
sh -e /etc/init.d/xvfb start
-
curl -Lo chrome.zip https://download-chromium.appspot.com/dl/Linux_x64 && unzip chrome.zip
-
curl -Lo chromedriver.zip http://chromedriver.storage.googleapis.com/2.16/chromedriver_linux64.zip && unzip chromedriver.zip
before_script
:
# install dependencies
-
npm install -g gulp
...
...
tests/run.sh
View file @
980cf54d
...
...
@@ -2,18 +2,5 @@
args
=
"
$@
"
run_tests
()
{
npm i
&&
\
eval
"npm test --
$args
"
}
if
[
"
$TRAVIS_PULL_REQUEST
"
==
"true"
]
&&
[
"
$TRAVIS_SECURE_ENV_VARS
"
==
"true"
]
then
run_tests
elif
[
"
$TRAVIS_PULL_REQUEST
"
==
"true"
]
&&
[
"
$TRAVIS_SECURE_ENV_VARS
"
==
"false"
]
then
exit
0
else
run_tests
fi
npm i
&&
\
eval
"npm test --
$args
"
tests/test.js
View file @
980cf54d
'
use strict
'
;
var
webdriver
=
require
(
'
selenium-webdriver
'
);
var
chrome
=
require
(
'
selenium-webdriver/chrome
'
);
var
test
=
require
(
'
selenium-webdriver/testing
'
);
var
Page
=
require
(
'
./page
'
);
var
PageLaxMode
=
require
(
'
./pageLaxMode
'
);
...
...
@@ -21,32 +22,20 @@ module.exports.todoMVCTest = function (frameworkName, baseUrl, speedMode, laxMod
}
function
launchBrowser
()
{
var
chromeOptions
=
new
chrome
.
Options
();
chromeOptions
.
addArguments
(
'
no-sandbox
'
);
if
(
process
.
env
.
SAUCE_USERNAME
!==
undefined
)
{
browser
=
new
webdriver
.
Builder
()
.
usingServer
(
'
http://
'
+
process
.
env
.
SAUCE_USERNAME
+
'
:
'
+
process
.
env
.
SAUCE_ACCESS_KEY
+
'
@ondemand.saucelabs.com:80/wd/hub
'
)
.
withCapabilities
({
'
tunnel-identifier
'
:
process
.
env
.
TRAVIS_JOB_NUMBER
,
build
:
process
.
env
.
TRAVIS_BUILD_NUMBER
,
browserName
:
browserName
,
username
:
process
.
env
.
SAUCE_USERNAME
,
accessKey
:
process
.
env
.
SAUCE_ACCESS_KEY
})
.
build
();
}
else
{
browser
=
new
webdriver
.
Builder
()
.
withCapabilities
({
browserName
:
browserName
})
.
build
();
if
(
process
.
env
.
CHROME_PATH
!==
undefined
)
{
chromeOptions
.
setChromeBinaryPath
(
process
.
env
.
CHROME_PATH
);
}
browser
=
new
webdriver
.
Builder
()
.
withCapabilities
({
browserName
:
browserName
})
.
setChromeOptions
(
chromeOptions
)
.
build
();
browser
.
get
(
baseUrl
);
page
=
laxMode
?
new
PageLaxMode
(
browser
)
:
new
Page
(
browser
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment