Browser: Use 'rv:' field of UA for modern IE version.
[mootools.git] / Gruntfile.js
blob0a24d3bcfe2c14dd8ee5c5bc88ac068d79fb6443
1 "use strict";
3 module.exports = function(grunt){
5         grunt.loadNpmTasks('grunt-contrib-connect');
6         grunt.loadNpmTasks('grunt-jasmine-html-spec-runner');
8         grunt.initConfig({
9                 connect: {
10                         testServerHeadless: {
11                                 options: {port: 9001}
12                         },
13                         testServer: {
14                                 options: {
15                                         port: 9001,
16                                         keepalive: true
17                                 }
18                         }
19                 },
20                 jasmine: {
21                         core15: {
22                                 src: ['http://localhost:9001/Specs/Runner/runner.html?preset=core-1.5']
23                         }
24                 }
25         });
27         grunt.registerTask('test', [
28                 'connect:testServerHeadless',
29                 'jasmine:core15'
30         ]);