Skip to content

Commit

Permalink
An attempt was made
Browse files Browse the repository at this point in the history
  • Loading branch information
patocallaghan committed Feb 15, 2021
1 parent 6249260 commit a7f16ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -3,9 +3,8 @@ import {
ModuleBasedTestResolver,
moduleFor,
strip,
expectDeprecation,
} from 'internal-test-helpers';
import { ExpectDeprecationFunc } from '../../../../../../internal-test-helpers/lib/ember-dev/deprecation';
declare let expectDeprecation: ExpectDeprecationFunc;

import { ENV } from '@ember/-internals/environment';
import { Component, setComponentManager } from '@ember/-internals/glimmer';
Expand Down
1 change: 1 addition & 0 deletions packages/internal-test-helpers/index.js
Expand Up @@ -8,6 +8,7 @@ export { default as strip } from './lib/strip';
export { default as applyMixins } from './lib/apply-mixins';
export { default as getTextOf } from './lib/get-text-of';
export { default as maybeExpectDeprecation } from './lib/maybe-expect-deprecation';
export { expectDeprecation } from './lib/ember-dev/deprecation';
export {
defineComponent,
defineSimpleHelper,
Expand Down
Expand Up @@ -11,7 +11,7 @@ export type ExpectDeprecationFunc = (
expectedMessage: Message
) => void;
type IgnoreDeprecationFunc = (func: () => void) => void;

export declare let expectDeprecation: ExpectDeprecationFunc;
declare global {
interface Window {
expectNoDeprecation: ExpectNoDeprecationFunc | null;
Expand Down

0 comments on commit a7f16ce

Please sign in to comment.