Commit 5b886069 authored by Sam Saccone's avatar Sam Saccone

Merge pull request #1321 from tastejs/framework-regex

Fix `frameworkNamePattern` regex
parents 5ace27f1 44e0d6cc
......@@ -4,7 +4,7 @@ var testSuite = require('./test.js');
var fs = require('fs');
var argv = require('optimist').default('laxMode', false).default('browser', 'chrome').argv;
var rootUrl = 'http://localhost:8000/';
var frameworkNamePattern = /^[a-z-_]+$/;
var frameworkNamePattern = /^[a-z-_\d]+$/;
var excludedFrameworks = [
// this implementation deviates from the specification to such an extent that they are
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment