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


TypeScript test-helpers.module函數代碼示例

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


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

示例1: module

import { ShadowingSuite, module } from "@glimmer/test-helpers";
module("Glimmer Component - shadowing", ShadowingSuite, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:shadowing-test.ts

示例2: module

import { module, WithDynamicVarsSuite } from "@glimmer/test-helpers";
module("Dynamically-scoped variable accessors", WithDynamicVarsSuite, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:with-dynamic-vars-test.ts

示例3: module

import { module, EmberishComponentTests } from "@glimmer/test-helpers";

module('Emberish Components', EmberishComponentTests, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:3,代碼來源:ember-component-new-test.ts

示例4: module

import { module, HasBlockSuite } from "@glimmer/test-helpers";
module('Has Block Helper', HasBlockSuite, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:has-block-test.ts

示例5: module

import { HasBlockParamsHelperSuite, module } from '@glimmer/test-helpers';
module('Components - has-block-params helper', HasBlockParamsHelperSuite, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:has-block-param-helper-test.ts

示例6: module

import { DebuggerSuite, module } from '@glimmer/test-helpers';
module("Debugger Tests", DebuggerSuite);
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:debugger-test.ts

示例7: module

import { module, BasicComponents, FragmentComponents } from "@glimmer/test-helpers";

module("[glimmer-runtime] Basic Components", BasicComponents, { componentModule: true });
module("[glimmer-runtime] Fragment Components", FragmentComponents, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:4,代碼來源:component-test.ts

示例8: module

import { module, YieldSuite } from '@glimmer/test-helpers';
module('Component Yielding', YieldSuite, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:yield-test.ts

示例9: module

import { ScopeSuite, module } from "@glimmer/test-helpers";
module('Components - integration - scope', ScopeSuite, { componentModule: true });
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:2,代碼來源:scope-test.ts

示例10: module

import {
  InElementSuite,
  module
} from "@glimmer/test-helpers";

module("#in-element Test", InElementSuite);
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:6,代碼來源:in-element-test.ts


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