當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。