feature(config-manager) add (#208)

This commit is contained in:
coderaiser 2019-05-30 19:27:21 +03:00
parent fe9723fa15
commit f9c659612a
33 changed files with 446 additions and 477 deletions

View file

@ -96,7 +96,7 @@ test('util: getRegExp', (t) => {
test('util: getRegExp: no', (t) => {
const reg = getRegExp('');
t.deepEqual(reg, RegExp('^.*$'), 'should return regexp');
t.deepEqual(reg, RegExp('^$'), 'should return regexp');
t.end();
});