From d1504efc9431cea58dbe80a704daabf494c8d7ad Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 10 Sep 2024 10:01:14 +1000 Subject: [PATCH] Remove two describe.only() calls --- ts/test-mock/messaging/attachments_test.ts | 2 +- ts/test-mock/messaging/lightbox_test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/test-mock/messaging/attachments_test.ts b/ts/test-mock/messaging/attachments_test.ts index 6376a512a..020f18475 100644 --- a/ts/test-mock/messaging/attachments_test.ts +++ b/ts/test-mock/messaging/attachments_test.ts @@ -18,7 +18,7 @@ import { strictAssert } from '../../util/assert'; export const debug = createDebug('mock:test:attachments'); -describe.only('attachments', function (this: Mocha.Suite) { +describe('attachments', function (this: Mocha.Suite) { this.timeout(durations.MINUTE); let bootstrap: Bootstrap; diff --git a/ts/test-mock/messaging/lightbox_test.ts b/ts/test-mock/messaging/lightbox_test.ts index 0c239a158..3aeefdbd0 100644 --- a/ts/test-mock/messaging/lightbox_test.ts +++ b/ts/test-mock/messaging/lightbox_test.ts @@ -19,7 +19,7 @@ import type { SignalService } from '../../protobuf'; const debug = createDebug('mock:test:lightbox'); -describe.only('lightbox', function (this: Mocha.Suite) { +describe('lightbox', function (this: Mocha.Suite) { this.timeout(durations.MINUTE); let bootstrap: Bootstrap;