Skip to content

Commit 10ba4da

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent 5105396 commit 10ba4da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/performance/src/resources/trace.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,13 @@ describe('Firebase Performance > trace', () => {
117117
expect(trace.getMetric('cacheHits')).to.eql(600);
118118
});
119119

120-
it('throws error if metric doesn\'t exist and has invalid name', () => {
120+
it("throws error if metric doesn't exist and has invalid name", () => {
121121
expect(() => trace.incrementMetric('_invalidMetric', 1)).to.throw();
122122
});
123123
});
124124

125125
describe('#putMetric', () => {
126-
it('creates new metric if one doesn\'t exist and has valid name.', () => {
126+
it("creates new metric if one doesn't exist and has valid name.", () => {
127127
trace.putMetric('cacheHits', 200);
128128

129129
expect(trace.getMetric('cacheHits')).to.eql(200);
@@ -136,7 +136,7 @@ describe('Firebase Performance > trace', () => {
136136
expect(trace.getMetric('cacheHits')).to.eql(400);
137137
});
138138

139-
it('throws error if metric doesn\'t exist and has invalid name', () => {
139+
it("throws error if metric doesn't exist and has invalid name", () => {
140140
expect(() => trace.putMetric('_invalidMetric', 1)).to.throw();
141141
});
142142
});

0 commit comments

Comments
 (0)