-
Notifications
You must be signed in to change notification settings - Fork 17
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 #2488 from alphagov/migrate-to-jasmine-browser
Migrate to jasmine browser
- Loading branch information
Showing
11 changed files
with
553 additions
and
181 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
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,4 @@ | ||
desc "Run Jasmine tests" | ||
task jasmine: :environment do | ||
sh "yarn run jasmine:ci" | ||
end |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
{ | ||
"srcDir": "public/assets/government-frontend", | ||
"srcFiles": [ | ||
"application-*.js", | ||
"webchat-*.js" | ||
], | ||
"cssFiles": [ | ||
"application-*.css" | ||
], | ||
"specDir": "spec/javascripts", | ||
"specFiles": [ | ||
"**/*[sS]pec.js" | ||
], | ||
"helpers": [ | ||
"vendor/jquery-1.12.4.js", | ||
"vendor/jasmine-jquery-2.0.5.js", | ||
"vendor/jasmine-ajax-3.4.0.js", | ||
"vendor/lolex.js", | ||
"helpers/*.js" | ||
], | ||
"browser": "headlessChrome" | ||
} |
Oops, something went wrong.