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


TypeScript SinonSpy.restore方法代码示例

本文整理汇总了TypeScript中Sinon.SinonSpy.restore方法的典型用法代码示例。如果您正苦于以下问题:TypeScript SinonSpy.restore方法的具体用法?TypeScript SinonSpy.restore怎么用?TypeScript SinonSpy.restore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sinon.SinonSpy的用法示例。


在下文中一共展示了SinonSpy.restore方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: cleanSpy

export function cleanSpy(spy: SinonSpy) {
    if (spy) {
        if (spy.restore) {
            spy.restore();
        }

        spy.reset();
    }
}
开发者ID:spatools,项目名称:promizr,代码行数:9,代码来源:common.ts

示例2: afterEach

 afterEach(() => {
   parseIntSpy.restore();
 });
开发者ID:RiseVision,项目名称:rise-node,代码行数:3,代码来源:z_schema.spec.ts

示例3: afterEach

	afterEach(() => {
		routerSetPathSpy.restore();
	});
开发者ID:mwistrand,项目名称:routing,代码行数:3,代码来源:Link.ts

示例4: stub

		run = stub(grunt.task, 'run');
		write = spy(grunt.file, 'write');
		expandMapping = stub(grunt.file, 'expandMapping', (patterns: string[], base: string) => {
			return [ 'foo' ];
		});
		readJSON = stub(grunt.file, 'readJSON', (filename: string) => {
			return {};
		});
		publisher.commit.returns(true);

		prepareOutputDirectory();
	},

	teardown() {
		loadNpmTasks.restore();
		write.restore();
		run.restore();
		readJSON.restore();
		expandMapping.restore();

		unloadTasks();
		cleanOutputDirectory();

		process.env.DEPLOY_DOCS = '';
	},

	beforeEach() {
		grunt.initConfig({
			apiDocDirectory,
			apiPubDirectory,
			tsconfig: {
开发者ID:dylans,项目名称:grunt-dojo2,代码行数:31,代码来源:typedoc.ts

示例5: registerSuite

import * as fs from 'fs';
import { AmdRootRequire } from '../../src/interfaces';

declare const require: AmdRootRequire;

const basePath = '_build/tests/support/data/';
let fsSpy: SinonSpy;

registerSuite('text - node', {
	load: {
		beforeEach() {
			fsSpy = spy(fs, 'readFile');
		},

		afterEach() {
			fsSpy.restore && fsSpy.restore();
		},

		tests: {
			'should return text and call fs'(this: any) {
				text.load(
					basePath + 'textLoad.txt',
					require,
					this.async().callback((val: string) => {
						assert.isTrue(fsSpy.calledOnce, 'Read file should be called once');
						assert.strictEqual(val, 'test', 'Correct text should be returned');
					})
				);
			},
			'should return text from cache'(this: any) {
				text.load(
开发者ID:jason0x43,项目名称:core,代码行数:31,代码来源:text_node.ts

示例6: afterEach

 afterEach(() => { consoleLog.restore(); })
开发者ID:iskandersierra,项目名称:decos,代码行数:1,代码来源:log.spec.ts

示例7: afterEach

 afterEach(() => {
   spy_defaultHandler.restore();
 });
开发者ID:netarc,项目名称:refrax,代码行数:3,代码来源:processResponse.spec.ts

示例8: afterEach

 afterEach(() => {
   normalizeSpy.restore();
   updateSpy.restore();
 });
开发者ID:RiseVision,项目名称:rise-node,代码行数:4,代码来源:peer.spec.ts


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