[@types/ember-qunit] improve skip definition to align with others

This commit is contained in:
Albert Yu
2018-03-23 21:21:37 +08:00
parent 54b3965d34
commit 9526aa700f

View File

@@ -161,9 +161,10 @@ declare module 'qunit' {
* ignoring the callback argument and the respective global and module's
* hooks.
*
* @param Title of unit being tested
* @param name Title of unit being tested
* @param callback Function to close over assertions
*/
export const skip: typeof QUnit.skip;
export function skip(name: string, callback: (this: TestContext, assert: Assert) => void): void;
export default QUnit;
}