File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/performance/src/resources Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,13 @@ describe('Firebase Performance > trace', () => {
117
117
expect ( trace . getMetric ( 'cacheHits' ) ) . to . eql ( 600 ) ;
118
118
} ) ;
119
119
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" , ( ) => {
121
121
expect ( ( ) => trace . incrementMetric ( '_invalidMetric' , 1 ) ) . to . throw ( ) ;
122
122
} ) ;
123
123
} ) ;
124
124
125
125
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." , ( ) => {
127
127
trace . putMetric ( 'cacheHits' , 200 ) ;
128
128
129
129
expect ( trace . getMetric ( 'cacheHits' ) ) . to . eql ( 200 ) ;
@@ -136,7 +136,7 @@ describe('Firebase Performance > trace', () => {
136
136
expect ( trace . getMetric ( 'cacheHits' ) ) . to . eql ( 400 ) ;
137
137
} ) ;
138
138
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" , ( ) => {
140
140
expect ( ( ) => trace . putMetric ( '_invalidMetric' , 1 ) ) . to . throw ( ) ;
141
141
} ) ;
142
142
} ) ;
You can’t perform that action at this time.
0 commit comments