File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -175,23 +175,23 @@ describe("Applait.Finder.prototype.storagecount method", function () {
175
175
expect ( finder . storagecount ( ) ) . toBe ( 0 ) ;
176
176
} ) ;
177
177
178
- describe ( "Applait.Finder.prototype reset function" , function ( ) {
178
+ } ) ;
179
179
180
- var finder = new Applait . Finder ( ) ;
180
+ describe ( " Applait.Finder.prototype.reset method" , function ( ) {
181
181
182
- /* Assigning garbage values */
183
- finder . filematchcount = 25 ;
184
- finder . searchcompletecount = 10 ;
185
- finder . searchkey = "jpg" ;
182
+ var finder = new Applait . Finder ( ) ;
186
183
187
- finder . reset ( ) ;
184
+ /* Assigning garbage values */
185
+ finder . filematchcount = 25 ;
186
+ finder . searchcompletecount = 10 ;
187
+ finder . searchkey = "jpg" ;
188
188
189
- it ( "reset function cleans up data properly" , function ( ) {
190
- expect ( finder . filematchcount ) . toBe ( 0 ) ;
191
- expect ( finder . searchcompletecount ) . toBe ( 0 ) ;
192
- expect ( finder . searchkey ) . toBe ( "" ) ;
193
- } ) ;
189
+ finder . reset ( ) ;
194
190
191
+ it ( "should clean up data properly" , function ( ) {
192
+ expect ( finder . filematchcount ) . toBe ( 0 ) ;
193
+ expect ( finder . searchcompletecount ) . toBe ( 0 ) ;
194
+ expect ( finder . searchkey ) . toBe ( "" ) ;
195
195
} ) ;
196
196
197
197
} ) ;
You can’t perform that action at this time.
0 commit comments