UNPKG

ember-introjs

Version:
13 lines (8 loc) 437 B
import { createModule, createOnly, createSkip } from './mocha-module'; import { TestModuleForComponent } from 'ember-test-helpers'; function describeComponent(name, description, callbacks, tests) { createModule(TestModuleForComponent, name, description, callbacks, tests); } describeComponent.only = createOnly(TestModuleForComponent); describeComponent.skip = createSkip(TestModuleForComponent); export default describeComponent;