當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript mockery.disable函數代碼示例

本文整理匯總了TypeScript中mockery.disable函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript disable函數的具體用法?TypeScript disable怎麽用?TypeScript disable使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了disable函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: before

 before(() => {
     mockery.disable(); // needed to ensure that we can mock vsts-task-lib/task
     mockery.enable({
         useCleanCache: true,
         warnOnUnregistered: false
     } as mockery.MockeryEnableArgs);
 });
開發者ID:Microsoft,項目名稱:vsts-tasks,代碼行數:7,代碼來源:L0.ts

示例2: destroy

	destroy(): void {
		unload(this.moduleUnderTestPath);
		Object.keys(this.mocks)
			.map((dep) => resolvePath(this.basePath, dep))
			.map((dep) => unload(dep));
		this.sandbox.restore();
		mockery.deregisterAll();
		mockery.disable();
	}
開發者ID:dylans,項目名稱:cli,代碼行數:9,代碼來源:MockModule.ts

示例3: teardown

    teardown(() => {
        testUtils.removeUnhandledRejectionListener();

        mockery.deregisterAll();
        mockery.disable();
    });
開發者ID:Event-Horizon,項目名稱:vscode-chrome-debug-core,代碼行數:6,代碼來源:chromeUtils.test.ts

示例4: afterEach

 afterEach(function () {
     mockery.deregisterAll();
     mockery.disable();
 });
開發者ID:bespoken,項目名稱:bst,代碼行數:4,代碼來源:spokes-test.ts

示例5: require

	'setup'() {
		mockery.enable({
			warnOnUnregistered: false
		});

		mockery.registerMock('update-notifier', updateNotifierStub);

		updateNotifier = require('intern/dojo/node!./../../src/updateNotifier').default;
	},
	'beforeEach'() {
		notifyStub.reset();
		updateNotifierStub.reset();
	},
	'teardown'() {
		mockery.deregisterAll();
		mockery.disable();
	},
	'Should call update-notifier with the passed arguments'() {
		updateNotifier(testPkg, testInterval);
		assert.isTrue(updateNotifierStub.calledOnce);
		assert.isTrue(updateNotifierStub.firstCall.calledWith({
			'pkg': testPkg,
			'updateCheckInterval': testInterval
		}));
	},
	'Should default interval to zero if none passed'() {
		updateNotifier(testPkg);
		assert.isTrue(updateNotifierStub.calledOnce);
		assert.isTrue(updateNotifierStub.firstCall.calledWith({
			'pkg': testPkg,
			'updateCheckInterval': 0
開發者ID:dylans,項目名稱:cli,代碼行數:31,代碼來源:updateNotifier.ts

示例6: after

after(function () {
    mockery.disable();
});
開發者ID:Microsoft,項目名稱:vsts-tasks,代碼行數:3,代碼來源:L0_conda_internal.ts

示例7: afterEach

 afterEach(function () {
     sandbox.restore();
     mockery.deregisterAll();
     mockery.disable();
 });
開發者ID:debmalya,項目名稱:bst,代碼行數:5,代碼來源:bst-intend-test.ts

示例8: afterEach

 afterEach(function () {
     setVersion(originalVersion);
     mockery.disable();
 });
開發者ID:bespoken,項目名稱:bst,代碼行數:4,代碼來源:bst-test.ts

示例9: after

 after(() => {
     mockery.disable();
 });
開發者ID:Microsoft,項目名稱:vsts-tasks,代碼行數:3,代碼來源:L0.ts

示例10: after

 after(() => {
     tl.mkdirP.restore();
     mockery.deregisterAll();
     mockery.disable();
 });
開發者ID:Microsoft,項目名稱:vsts-rm-extensions,代碼行數:5,代碼來源:filesystemProviderTests.ts


注:本文中的mockery.disable函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。