|
18 | 18 | import { expect, use } from 'chai';
|
19 | 19 | import chaiAsPromised from 'chai-as-promised';
|
20 | 20 |
|
21 |
| -import { mockEndpoint } from '../../../../test/helpers/api/helper'; |
| 21 | +import { mockEndpoint } from '../../../test/helpers/api/helper'; |
22 | 22 | import {
|
23 | 23 | testAuth,
|
24 | 24 | TestAuth,
|
25 | 25 | testUser
|
26 |
| -} from '../../../../test/helpers/mock_auth'; |
27 |
| -import * as mockFetch from '../../../../test/helpers/mock_fetch'; |
28 |
| -import { Endpoint } from '../../../api'; |
29 |
| -import { MultiFactorSessionImpl } from '../../../mfa/mfa_session'; |
30 |
| -import { StartTotpMfaEnrollmentResponse } from '../../../api/account_management/mfa'; |
31 |
| -import { FinalizeMfaResponse } from '../../../api/authentication/mfa'; |
| 26 | +} from '../../../test/helpers/mock_auth'; |
| 27 | +import * as mockFetch from '../../../test/helpers/mock_fetch'; |
| 28 | +import { Endpoint } from '../../api'; |
| 29 | +import { MultiFactorSessionImpl } from '../../mfa/mfa_session'; |
| 30 | +import { StartTotpMfaEnrollmentResponse } from '../../api/account_management/mfa'; |
| 31 | +import { FinalizeMfaResponse } from '../../api/authentication/mfa'; |
32 | 32 | import {
|
33 | 33 | TotpMultiFactorAssertionImpl,
|
34 | 34 | TotpMultiFactorGenerator,
|
35 | 35 | TotpSecret
|
36 | 36 | } from './totp';
|
37 |
| -import { FactorId } from '../../../model/public_types'; |
38 |
| -import { AuthErrorCode } from '../../../core/errors'; |
39 |
| -import { AppName } from '../../../model/auth'; |
40 |
| -import { _castAuth } from '../../../core/auth/auth_impl'; |
| 37 | +import { FactorId } from '../../model/public_types'; |
| 38 | +import { AuthErrorCode } from '../../core/errors'; |
| 39 | +import { AppName } from '../../model/auth'; |
| 40 | +import { _castAuth } from '../../core/auth/auth_impl'; |
41 | 41 |
|
42 | 42 | use(chaiAsPromised);
|
43 | 43 |
|
|
0 commit comments