File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11import * as mockfs from "mock-fs" ;
2- import sinon from "sinon" ;
3- import * as ensureApiEnabled from "../../../ensureApiEnabled" ;
4- import { FirebaseMcpServer } from "../.." ;
2+ import * as sinon from "sinon" ;
3+ import { FirebaseMcpServer } from "../../index" ;
54import { RC } from "../../../rc" ;
65import { Config } from "../../../config" ;
76import { McpContext } from "../../types" ;
87import { isAppTestingAvailable } from "./availability" ;
98import { expect } from "chai" ;
9+ import * as ensureApiEnabled from "../../../ensureApiEnabled" ;
1010
1111describe ( "isAppTestingAvailable" , ( ) => {
12- const sandbox : sinon . SinonSandbox = sinon . createSandbox ( ) ;
12+ let sandbox : sinon . SinonSandbox ;
1313 let checkStub : sinon . SinonStub ;
1414
1515 beforeEach ( ( ) => {
16+ sandbox = sinon . createSandbox ( ) ;
1617 checkStub = sandbox . stub ( ensureApiEnabled , "check" ) ;
1718 } ) ;
1819
You can’t perform that action at this time.
0 commit comments