本文整理汇总了TypeScript中chai.assert.notMatch方法的典型用法代码示例。如果您正苦于以下问题:TypeScript assert.notMatch方法的具体用法?TypeScript assert.notMatch怎么用?TypeScript assert.notMatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chai.assert
的用法示例。
在下文中一共展示了assert.notMatch方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('handles bundle tagged-template literals in ES5', async () => {
const tmpDir = tmp.dirSync();
copyDir(
path.join(fixturePath, 'build-with-tagged-template-literals', 'source'),
tmpDir.name);
await runCommand(binPath, ['build'], {
cwd: tmpDir.name,
});
const filename =
path.join(tmpDir.name, 'build', 'es5-bundled', 'my-app.html');
const contents = fs.readFileSync(filename, 'utf-8');
// assert contents contain _templateObject with UUID suffix
assert.match(
contents,
/_templateObject\d*_[A-Fa-f0-9]+\s*=/g,
'build output does not contain modified _templateObject names');
// assert contents don't contain unmodified "_templateObject" variable
assert.notMatch(
contents,
/_templateObject\d*\s*=/g,
'build output contains unmodified _templateObject names');
});
示例2: it
it('should return no trailing slash', () => {
urls = new git.GithubRepo({repoOwner:'foo', repoProject: 'bar'}, 'baz', gitTest.opts).urls;
assert.notMatch(urls.apiBranches(), /\/$/, 'apiBranches');
assert.notMatch(urls.apiBranch('abc'), /\/$/, 'apiBranch');
});
示例3: it
it('shouldn\'t append custom node into the obfuscated code', () => {
assert.notMatch(obfuscatedCode, regExp);
});
示例4: it
it('shouldn\'t add `control flow storage` node to the obfuscated code', () => {
assert.notMatch(obfuscatedCode, controlFlowStorageRegExp);
});
示例5: it
it('match #3: shouldn\'t append custom node into the obfuscated code', () => {
assert.notMatch(obfuscatedCode, consoleWarnRegExp);
});