Files
react/grunt/config/phantom.js
T

12 lines
240 B
JavaScript

var grunt = require("grunt");
exports.run = {
port: 8080,
harness: "test/phantom-harness.js",
// Run `grunt test --debug` to enable in-browser testing.
debug: !!grunt.option("debug"),
tests: [
"**/__tests__/*-test.js"
]
};