Skip to content

Commit b597a9e

Browse files
committed
Fix typos in test names.
1 parent 487483f commit b597a9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/database/test/exp/integration.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ describe('Database@exp Tests', () => {
141141
unsubscribe();
142142
});
143143

144-
it('can connected to emulator', async () => {
144+
it('can connect to emulator', async () => {
145145
if (USE_EMULATOR) {
146146
const db = getDatabase(defaultApp);
147147
connectDatabaseEmulator(db, 'localhost', parseInt(EMULATOR_PORT, 10));
148148
await get(refFromURL(db, `${DATABASE_ADDRESS}/foo/bar`));
149149
}
150150
});
151-
it('can chnage emulator config before network operations', async () => {
151+
it('can change emulator config before network operations', async () => {
152152
if (USE_EMULATOR) {
153153
const db = getDatabase(defaultApp);
154154
const port = parseInt(EMULATOR_PORT, 10);
@@ -157,7 +157,7 @@ describe('Database@exp Tests', () => {
157157
await get(refFromURL(db, `${DATABASE_ADDRESS}/foo/bar`));
158158
}
159159
});
160-
it('can connected to emulator after network operations with same parameters', async () => {
160+
it('can connect to emulator after network operations with same parameters', async () => {
161161
if (USE_EMULATOR) {
162162
const db = getDatabase(defaultApp);
163163
const port = parseInt(EMULATOR_PORT, 10);

0 commit comments

Comments
 (0)