diff --git a/__tests__/filters-downloader.test.js b/__tests__/filters-downloader.test.js index c316e8a..706906e 100644 --- a/__tests__/filters-downloader.test.js +++ b/__tests__/filters-downloader.test.js @@ -21,13 +21,13 @@ const URL_EMPTY = 'https://raw.githubusercontent.com/AdguardTeam/FiltersDownload const URL_INCLUDES_EMPTY = 'https://raw.githubusercontent.com/AdguardTeam/FiltersDownloader/test-resources/__tests__/resources/includes_empty_filter.txt'; /** - * Checks the result of FiltersDownloader.resolveConditions() for the `actual` rules + * Checks the result of `FiltersDownloader.resolveConditions()` for the `actual` rules * with the {@link FilterCompilerConditionsConstants} config * against the `expected` rules. * - * @param {object} FiltersDownloader - * @param {string[]} actual - * @param {string[]} expected + * @param {object} FiltersDownloader FiltersDownloader object with resolveConditions(). + * @param {string[]} actual Input rules. + * @param {string[]} expected Expected output rules. */ const expectResolvedConditionsRules = (FiltersDownloader, actual, expected) => { const compiled = FiltersDownloader.resolveConditions(actual, FilterCompilerConditionsConstants);