Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
cdc92e81
Commit
cdc92e81
authored
11 years ago
by
Chris Rebert
Browse files
Options
Download
Email Patches
Plain Diff
only run browserstack tests in Travis
parent
093cda24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Gruntfile.js
+5
-1
Gruntfile.js
with
5 additions
and
1 deletion
+5
-1
Gruntfile.js
+
5
-
1
View file @
cdc92e81
...
...
@@ -129,7 +129,11 @@ module.exports = function(grunt) {
// Test task.
grunt
.
registerTask
(
'
test
'
,
[
'
jshint
'
,
'
qunit
'
,
'
browserstack_runner
'
]);
var
testSubtasks
=
[
'
jshint
'
,
'
qunit
'
];
if
(
process
.
env
.
TRAVIS
)
{
testSubtasks
.
push
(
'
browserstack_runner
'
);
}
grunt
.
registerTask
(
'
test
'
,
testSubtasks
);
// JS distribution task.
grunt
.
registerTask
(
'
dist-js
'
,
[
'
concat
'
,
'
uglify
'
]);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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