Commit 44e0d6cc authored by Arthur Verschaeve's avatar Arthur Verschaeve

Fix `frameworkNamePattern` regex

The current one didn't match any numbers (such as in the `sapui5` example)
parent 218c523d
......@@ -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