File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 18
18
import { expect , use } from 'chai' ;
19
19
import * as chaiAsPromised from 'chai-as-promised' ;
20
20
import { UserImpl } from './user_impl' ;
21
- import { mockAuth } from '../../../test/mock_auth' ;
22
21
import { StsTokenManager } from './token_manager' ;
23
22
import { IdTokenResponse } from '../../model/id_token' ;
23
+ import { mockAuth } from '../../../test/mock_auth' ;
24
24
25
25
use ( chaiAsPromised ) ;
26
26
27
27
describe ( 'core/user/user_impl' , ( ) => {
28
- const auth = mockAuth ( 'foo' , 'i-am-the-api-key' ) ;
28
+ const auth = mockAuth ;
29
29
let stsTokenManager : StsTokenManager ;
30
30
31
31
beforeEach ( ( ) => {
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { Auth } from '../../src/model/auth' ;
19
18
import { Endpoint } from '../../src/api' ;
20
19
import { mock , Route } from '../mock_fetch' ;
21
20
import { TEST_SCHEME , TEST_HOST , TEST_KEY } from '../mock_auth' ;
You can’t perform that action at this time.
0 commit comments