当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript assert.notMatch方法代码示例

本文整理汇总了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');
  });
开发者ID:abdonrd,项目名称:polymer-cli,代码行数:24,代码来源:build_test.ts

示例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');
		});
开发者ID:AbraaoAlves,项目名称:tsd,代码行数:5,代码来源:GithubURLs.ts

示例3: it

 it('shouldn\'t append custom node into the obfuscated code', () => {
     assert.notMatch(obfuscatedCode, regExp);
 });
开发者ID:dssoft32,项目名称:javascript-obfuscator,代码行数:3,代码来源:StringArrayNode.spec.ts

示例4: it

 it('shouldn\'t add `control flow storage` node to the obfuscated code', () => {
     assert.notMatch(obfuscatedCode, controlFlowStorageRegExp);
 });
开发者ID:dssoft32,项目名称:javascript-obfuscator,代码行数:3,代码来源:FunctionControlFlowTransformer.spec.ts

示例5: it

 it('match #3: shouldn\'t append custom node into the obfuscated code', () => {
     assert.notMatch(obfuscatedCode, consoleWarnRegExp);
 });
开发者ID:dssoft32,项目名称:javascript-obfuscator,代码行数:3,代码来源:ConsoleOutputDisableExpressionNode.spec.ts


注:本文中的chai.assert.notMatch方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。