mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
ebac8f6f9b
Fixes: https://pagure.io/freeipa/issue/9347 Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Francisco Trivino <ftrivino@redhat.com>
25 lines
620 B
JavaScript
25 lines
620 B
JavaScript
module.exports = function(grunt) {
|
|
grunt.initConfig({
|
|
qunit_junit: {
|
|
options: {}
|
|
},
|
|
qunit: {
|
|
options: {
|
|
puppeteer: {
|
|
executablePath: '/usr/bin/chromium-browser',
|
|
args: [
|
|
"--allow-file-access-from-files"
|
|
]
|
|
},
|
|
},
|
|
all: [
|
|
'test/all_tests.html'
|
|
]
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-qunit-junit');
|
|
grunt.loadNpmTasks('grunt-contrib-qunit');
|
|
grunt.registerTask('test', ['qunit_junit', 'qunit']);
|
|
};
|