Make WordPress Core

Ticket #25096: 25096.2.diff

File 25096.2.diff, 1.4 KB (added by jorbin, 11 years ago)
  • Gruntfile.js

     
    5656                qunit: {
    5757                        files: ['tests/qunit/**/*.html']
    5858                },
     59                connect: {
     60                        development: {
     61                                options: {
     62                                        hostname: '0.0.0.0',
     63                                        port: '8000'
     64                                }
     65                        }
     66                },
    5967                uglify: {
    6068                        core: {
    6169                                expand: true,
     
    118126        // Load tasks.
    119127        grunt.loadNpmTasks('grunt-contrib-clean');
    120128        grunt.loadNpmTasks('grunt-contrib-copy');
     129        grunt.loadNpmTasks('grunt-contrib-connect');
    121130        grunt.loadNpmTasks('grunt-contrib-cssmin');
    122131        grunt.loadNpmTasks('grunt-contrib-qunit');
    123132        grunt.loadNpmTasks('grunt-contrib-uglify');
     
    129138
    130139        // Testing task.
    131140        grunt.registerTask('test', ['qunit']);
     141        grunt.registerTask('test:debug', function() {
     142                grunt.log.writeln('Run tests in a browser at http://localhost:8000/tests/qunit/');
     143                grunt.task.run(['connect', 'watch:test']);
     144        });     
    132145
    133146        // Default task.
    134147        grunt.registerTask('default', ['build']);
  • package.json

     
    1111  "devDependencies": {
    1212    "grunt": "~0.4.1",
    1313    "grunt-contrib-clean": "~0.5.0",
     14    "grunt-contrib-connect": "~0.3.0",
    1415    "grunt-contrib-copy": "~0.4.1",
    1516    "grunt-contrib-cssmin": "~0.6.1",
    1617    "grunt-contrib-qunit": "~0.2.2",