Skip to content

Commit 9d77dbb

Browse files
committed
More test cleanup
1 parent 2893ee2 commit 9d77dbb

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

packages/auth/src/core/auth/emulator.test.ts

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { FetchProvider } from '../util/fetch_provider';
3434
use(sinonChai);
3535
use(chaiAsPromised);
3636

37-
describe.only('core/auth/emulator', () => {
37+
describe('core/auth/emulator', () => {
3838
let auth: TestAuth;
3939
let user: UserInternal;
4040
let normalEndpoint: fetch.Route;
@@ -113,23 +113,6 @@ describe.only('core/auth/emulator', () => {
113113
});
114114
});
115115

116-
it('subsequent calls update the endpoint appropriately', async () => {
117-
connectAuthEmulator(auth, 'http://127.0.0.1:2021');
118-
expect(auth.emulatorConfig).to.eql({
119-
protocol: 'http',
120-
host: '127.0.0.1',
121-
port: 2021,
122-
options: { disableWarnings: false }
123-
});
124-
connectAuthEmulator(auth, 'http://127.0.0.1:2020');
125-
expect(auth.emulatorConfig).to.eql({
126-
protocol: 'http',
127-
host: '127.0.0.1',
128-
port: 2020,
129-
options: { disableWarnings: false }
130-
});
131-
});
132-
133116
it('updates the endpoint appropriately', async () => {
134117
connectAuthEmulator(auth, 'http://127.0.0.1:2020');
135118
await user.delete();
@@ -184,7 +167,7 @@ describe.only('core/auth/emulator', () => {
184167
);
185168
});
186169

187-
it.only('skips console info and has no banner if warnings disabled', () => {
170+
it('skips console info and has no banner if warnings disabled', () => {
188171
sinon.stub(console, 'info');
189172
connectAuthEmulator(auth, 'http://127.0.0.1:2020', {
190173
disableWarnings: true

0 commit comments

Comments
 (0)