Skip to content

Commit 19d9709

Browse files
committed
migrate tests
1 parent f0e7900 commit 19d9709

File tree

4 files changed

+14
-28
lines changed

4 files changed

+14
-28
lines changed

test/flexsearch-0.6.2/index.html

+6-13
Original file line numberDiff line numberDiff line change
@@ -18,38 +18,31 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
1818
suite["flexsearch-0.6.2"] = {
1919

2020
init: function(){
21-
2221
lib = new FlexSearch({
23-
2422
encode: "icase",
2523
tokenize: "strict",
2624
resolution: 9,
2725
threshold: 8,
2826
depth: 1
2927
});
30-
31-
window["lib"] = lib;
28+
//window["lib"] = lib;
3229
},
3330
add: function(data){
34-
3531
for(let i = 0, len = data.length; i < len; i++){
36-
3732
lib.add(i, data[i]);
3833
}
3934
},
40-
update: function(id){
41-
35+
update: function(data){
4236
for(let i = 0, len = data.length; i < len; i++){
43-
4437
lib.add(i, data[i]);
4538
}
4639
},
47-
remove: function(id){
48-
49-
lib.remove(id);
40+
remove: function(data){
41+
for(let i = 0, len = data.length; i < len; i++){
42+
lib.remove(i);
43+
}
5044
},
5145
query: function(query){
52-
5346
return lib.search(query);
5447
}
5548
};

test/flexsearch-0.6.3/index.html

+6-13
Original file line numberDiff line numberDiff line change
@@ -18,38 +18,31 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
1818
suite["flexsearch-0.6.3"] = {
1919

2020
init: function(){
21-
2221
lib = new FlexSearch({
23-
2422
encode: "icase",
2523
tokenize: "strict",
2624
resolution: 9,
2725
threshold: 8,
2826
depth: 1
2927
});
30-
31-
window["lib"] = lib;
28+
//window["lib"] = lib;
3229
},
3330
add: function(data){
34-
3531
for(let i = 0, len = data.length; i < len; i++){
36-
3732
lib.add(i, data[i]);
3833
}
3934
},
40-
update: function(id){
41-
35+
update: function(data){
4236
for(let i = 0, len = data.length; i < len; i++){
43-
4437
lib.add(i, data[i]);
4538
}
4639
},
47-
remove: function(id){
48-
49-
lib.remove(id);
40+
remove: function(data){
41+
for(let i = 0, len = data.length; i < len; i++){
42+
lib.remove(i);
43+
}
5044
},
5145
query: function(query){
52-
5346
return lib.search(query);
5447
}
5548
};

test/flexsearch-0.7.0/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
4646
},
4747
remove: function(data){
4848
for(let i = 0, len = data.length; i < len; i++){
49-
lib.remove(i, data[i]);
49+
lib.remove(i);
5050
}
5151
}
5252
};

test/flexsearch-0.8.0/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ <h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
5252
},
5353
remove: function(data){
5454
for(let i = 0, len = data.length; i < len; i++){
55-
lib.remove(i, data[i]);
55+
lib.remove(i);
5656
}
5757
}
5858
};

0 commit comments

Comments
 (0)