本文整理匯總了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 });
示例2: module
import { module, WithDynamicVarsSuite } from "@glimmer/test-helpers";
module("Dynamically-scoped variable accessors", WithDynamicVarsSuite, { componentModule: true });
示例3: module
import { module, EmberishComponentTests } from "@glimmer/test-helpers";
module('Emberish Components', EmberishComponentTests, { componentModule: true });
示例4: module
import { module, HasBlockSuite } from "@glimmer/test-helpers";
module('Has Block Helper', HasBlockSuite, { componentModule: true });
示例5: module
import { HasBlockParamsHelperSuite, module } from '@glimmer/test-helpers';
module('Components - has-block-params helper', HasBlockParamsHelperSuite, { componentModule: true });
示例6: module
import { DebuggerSuite, module } from '@glimmer/test-helpers';
module("Debugger Tests", DebuggerSuite);
示例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 });
示例8: module
import { module, YieldSuite } from '@glimmer/test-helpers';
module('Component Yielding', YieldSuite, { componentModule: true });
示例9: module
import { ScopeSuite, module } from "@glimmer/test-helpers";
module('Components - integration - scope', ScopeSuite, { componentModule: true });
示例10: module
import {
InElementSuite,
module
} from "@glimmer/test-helpers";
module("#in-element Test", InElementSuite);