You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it('should be filter out stopword in english',function(){
15
+
varinput1="a whole new category is good for me";
16
+
varresult=f.filter(input1);
17
+
assert.deepEqual(['category','good'],result);
18
+
console.log();
19
+
console.log(input1," ==> ",result);
20
+
});
21
+
22
+
it('should be filter out stopword in vietnamse',function(){
23
+
f.setLanguage('vi');
24
+
25
+
varinput2="Chủ tịch mảng thiết bị của BlackBerry, ông Ron Louks cho biết Android 6.0 sẽ cập bến thiết bị này vào khoảng năm mới, tức là vào đầu tháng một";
0 commit comments