mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-06 15:30:01 +00:00
45234b9c94
* Migrate more jest tests to vitest * Fix jest config * Fix jest config * Make remaining jest tests type-happy
14 lines
340 B
JavaScript
14 lines
340 B
JavaScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { vi } from "vitest";
|
|
|
|
export default function workerFactory(options) {
|
|
return vi.fn;
|
|
}
|