mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 07:08:10 -05:00
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
// SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11
|
|
|
|
/* global jest */
|
|
|
|
// Mock for react-native-sqlite-storage
|
|
export const SQLite = {
|
|
enablePromise: jest.fn(),
|
|
openDatabase: jest.fn(),
|
|
};
|