1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

Fix test.js following changes in API

This commit is contained in:
Raymond Hill 2021-08-05 14:19:04 -04:00
parent 9fc361c84f
commit 8c48375caf
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -32,7 +32,7 @@ import {
enableWASM,
FilteringContext,
pslInit,
restart,
useRawLists,
} from './index.js';
/******************************************************************************/
@ -60,7 +60,7 @@ function fetch(listName) {
fetch('easylist'),
fetch('easyprivacy'),
]).then(rawLists => {
return restart([
return useRawLists([
{ name: 'easylist', raw: rawLists[0] },
{ name: 'easyprivacy', raw: rawLists[1] },
]);
@ -94,9 +94,6 @@ function fetch(listName) {
console.log(snfe.toLogData());
}
// Remove all filters
restart();
process.exit();
})();