Sort TS imports

This commit is contained in:
Henrik Hüttemann 2023-06-19 20:43:54 +02:00
parent 830cf0b539
commit 8dd4e66948
No known key found for this signature in database
GPG Key ID: 9F7BD10E0A8A111E
2 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,7 @@ import { expect, jest, test } from '@jest/globals'
import axios from 'axios'
import { IdMapping } from '../entity/IdMapping'
import * as storage from '../helpers/storage'
import { SessionOptions } from '../helpers/synapse'
import {
MatrixRoomPresets,
MatrixRoomVisibility,
@ -14,7 +15,6 @@ import {
parseMemberships,
registerRoom,
} from './rooms'
import { SessionOptions } from '../helpers/synapse'
jest.mock('axios')
const mockedAxios = axios as jest.Mocked<typeof axios>

View File

@ -1,5 +1,5 @@
import { expect, jest, test } from '@jest/globals'
import { getUserSessionOptions } from '../helpers/synapse'
import { jest, expect, test } from '@jest/globals'
import { getCreatorSessionOptions } from './rooms'
jest.mock('../helpers/synapse')