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