Skip to content

Commit

Permalink
Merge pull request #1303 from emberjs/fix-resumeTest
Browse files Browse the repository at this point in the history
`TestContext.resumeTest()` returns `void`, not `Promise<void>`
  • Loading branch information
chriskrycho committed Dec 21, 2022
2 parents 6d57025 + 1d22a8e commit b487c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon-test-support/@ember/test-helpers/setup-context.ts
Expand Up @@ -80,7 +80,7 @@ export interface TestContext extends BaseContext {
getProperties(...args: string[]): Pick<BaseContext, string>;

pauseTest(): Promise<void>;
resumeTest(): Promise<void>;
resumeTest(): void;
}

// eslint-disable-next-line require-jsdoc
Expand Down

0 comments on commit b487c05

Please sign in to comment.