forked from passbolt/passbolt-appjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
37 lines (33 loc) · 1.09 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) Passbolt SARL (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Passbolt SARL (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
*/
module.exports = function(grunt) {
grunt.registerTask("test", ["testee:tests"]);
grunt.initConfig({
testee: {
tests: {
options: {
browsers: [{
"browser": "chrome",
"args": [
"--headless",
"--disable-gpu",
"--remote-debugging-port=9222"
]
}]
},
src: ['test/test.html']
}
}
});
grunt.loadNpmTasks('grunt-testee');
};