mirror of
https://github.com/jashkenas/backbone.git
synced 2026-04-08 03:00:26 -04:00
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.registerTask('default', 'qunit');
|
|
|
|
grunt.initConfig({
|
|
qunit: {
|
|
index: 'test/index.html'
|
|
}
|
|
});
|
|
|
|
};
|