Interactive test-electron

This commit is contained in:
Fedor Indutny 2024-06-27 17:22:06 -07:00 committed by GitHub
parent 86bcbe4085
commit abf33f98cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 212 additions and 98 deletions

5
ts/window.d.ts vendored
View file

@ -8,6 +8,7 @@ import type * as Backbone from 'backbone';
import type PQueue from 'p-queue/dist';
import type { assert } from 'chai';
import type { PhoneNumber, PhoneNumberFormat } from 'google-libphonenumber';
import type { MochaOptions } from 'mocha';
import type { ConversationModelCollectionType } from './model-types.d';
import type { textsecure } from './textsecure';
@ -280,9 +281,9 @@ declare global {
RETRY_DELAY: boolean;
assert: typeof assert;
testUtilities: {
debug: (info: unknown) => void;
setup: MochaOptions;
onTestEvent: (event: unknown) => void;
initialize: () => Promise<void>;
onComplete: (info: unknown) => void;
prepareTests: () => void;
};
}