mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
12 lines
240 B
JavaScript
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"
|
|
]
|
|
};
|