-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing tests and making this into a GHA pipeline
- Loading branch information
1 parent
b00a257
commit e55b860
Showing
5 changed files
with
32 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
module.exports = function(grunt) { | ||
require('load-grunt-config')(grunt) | ||
// load npm tasks | ||
grunt.loadNpmTasks('grunt-karma') | ||
grunt.loadNpmTasks('grunt-karma-coveralls') | ||
} | ||
// Load grunt configurations | ||
require('load-grunt-config')(grunt, { | ||
configPath: require('path').join(__dirname, 'grunt'), | ||
init: true, | ||
}); | ||
|
||
// Load npm tasks | ||
grunt.loadNpmTasks('grunt-karma'); | ||
grunt.loadNpmTasks('grunt-karma-coveralls'); | ||
|
||
// Default task | ||
grunt.registerTask('test', ['karma:chrome']); | ||
}; |
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