Skip to content

Commit 81ab183

Browse files
NothingEverHappensjamesdaniels
authored andcommitted
chore(): Fix minor typos in test descriptions (angular#2251)
1 parent fc9c7e4 commit 81ab183

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/auth/auth.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('AngularFireAuth', () => {
7171
});
7272
});
7373

74-
it('should be exist', () => {
74+
it('should exist', () => {
7575
expect(afAuth instanceof AngularFireAuth).toBe(true);
7676
});
7777

src/functions/functions.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('AngularFireFunctions', () => {
2626
done();
2727
});
2828

29-
it('should be exist', () => {
29+
it('should exist', () => {
3030
expect(afFns instanceof AngularFireFunctions).toBe(true);
3131
});
3232

src/performance/performance.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ describe('AngularFirePerformance', () => {
2525
done();
2626
});
2727

28-
it('should be exist', () => {
28+
it('should exist', () => {
2929
expect(afp instanceof AngularFirePerformance).toBe(true);
3030
});
3131

3232
it('should have the Performance instance', () => {
3333
expect(afp.performance).toBeDefined();
3434
});
3535

36-
});
36+
});

0 commit comments

Comments
 (0)