File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import * as projectManager from "../../management/projects";
8
8
import { Config } from "../../config" ;
9
9
import { FirebaseProjectMetadata } from "../../types/project" ;
10
10
import * as promptImport from "../../prompt" ;
11
+ import * as requireAuthImport from "../../requireAuth" ;
11
12
12
13
const TEST_FIREBASE_PROJECT : FirebaseProjectMetadata = {
13
14
projectId : "my-project-123" ,
@@ -34,6 +35,7 @@ describe("project", () => {
34
35
let emptyConfig : Config ;
35
36
36
37
beforeEach ( ( ) => {
38
+ sandbox . stub ( requireAuthImport , "requireAuth" ) . resolves ( ) ;
37
39
getProjectStub = sandbox . stub ( projectManager , "getFirebaseProject" ) ;
38
40
createFirebaseProjectStub = sandbox . stub ( projectManager , "createFirebaseProjectAndLog" ) ;
39
41
getOrPromptProjectStub = sandbox . stub ( projectManager , "getOrPromptProject" ) ;
You can’t perform that action at this time.
0 commit comments