You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

node-qunit.js 215B

1234567891011
  1. // Use node-qunit to run the tests.
  2. var qunit = require("qunit");
  3. qunit.run({
  4. code: {
  5. namespace: "xregexp",
  6. path: __dirname + "/../xregexp-all.js"
  7. },
  8. tests: __dirname + "/tests.js"
  9. });