diff --git a/packages/core/__tests__/types.test.ts b/packages/core/__tests__/types.test.ts index 8537c30f8..104b5882b 100644 --- a/packages/core/__tests__/types.test.ts +++ b/packages/core/__tests__/types.test.ts @@ -19,7 +19,8 @@ describe('Interaction with_response overloads.', () => { api.interactions.reply(SNOWFLAKE, TOKEN, { with_response: true }), )); - test('Replying returns undefined.', () => assertType>(api.interactions.reply(SNOWFLAKE, TOKEN, {}))); + test('Replying returns undefined.', () => + assertType>(api.interactions.reply(SNOWFLAKE, TOKEN, {}))); test('Defer returns RESTPostAPIInteractionCallbackWithResponseResult.', () => assertType>( @@ -33,21 +34,24 @@ describe('Interaction with_response overloads.', () => { api.interactions.deferMessageUpdate(SNOWFLAKE, TOKEN, { with_response: true }), )); - test('Defer message update returns undefined.', () => assertType>(api.interactions.deferMessageUpdate(SNOWFLAKE, TOKEN, {}))); + test('Defer message update returns undefined.', () => + assertType>(api.interactions.deferMessageUpdate(SNOWFLAKE, TOKEN, {}))); test('Update message returns RESTPostAPIInteractionCallbackWithResponseResult.', () => assertType>( api.interactions.updateMessage(SNOWFLAKE, TOKEN, { with_response: true }), )); - test('Update message returns undefined.', () => assertType>(api.interactions.updateMessage(SNOWFLAKE, TOKEN, {}))); + test('Update message returns undefined.', () => + assertType>(api.interactions.updateMessage(SNOWFLAKE, TOKEN, {}))); test('Create autocomplete response returns RESTPostAPIInteractionCallbackWithResponseResult.', () => assertType>( api.interactions.createAutocompleteResponse(SNOWFLAKE, TOKEN, { with_response: true }), )); - test('Create autocomplete response returns undefined.', () => assertType>(api.interactions.createAutocompleteResponse(SNOWFLAKE, TOKEN, {}))); + test('Create autocomplete response returns undefined.', () => + assertType>(api.interactions.createAutocompleteResponse(SNOWFLAKE, TOKEN, {}))); test('Create modal returns RESTPostAPIInteractionCallbackWithResponseResult.', () => assertType>(