mirror of
https://github.com/tauri-apps/tauri-forage.git
synced 2026-02-05 03:01:20 +01:00
12 lines
177 B
JavaScript
12 lines
177 B
JavaScript
/* eslint no-undef: 0 */
|
|
|
|
jest.setTimeout(50000)
|
|
|
|
global.Promise = require('promise')
|
|
|
|
setTimeout(() => {
|
|
// do nothing
|
|
}, 1)
|
|
|
|
require('dotenv').config({ path: '.env.jest' })
|