-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #944 from /issues/942/1
Fixes #942. Split up tests so non-auth functional tests can run for PRs from forks.
- Loading branch information
Showing
5 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
/* | ||
This file is provided so we can run tests on Travis for pull requests | ||
from forks that don't have access to encrypted environment variables. | ||
node_modules/.bin/intern-runner config=tests/intern \ | ||
functionalSuites=tests/functional-nonauth | ||
*/ | ||
|
||
define([ | ||
'./functional/reporting-non-auth.js', | ||
'./functional/comments-non-auth.js', | ||
'./functional/contributors-non-auth.js', | ||
'./functional/index-non-auth.js', | ||
'./functional/issue-list-non-auth.js', | ||
'./functional/issues-non-auth.js', | ||
'./functional/history-navigation-non-auth.js', | ||
'./functional/search-non-auth.js' | ||
], function() { | ||
'use strict'; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters