Skip to content

Commit efc99a5

Browse files
committed
AG-53262: Fix e2e fixture imports to use @adguard/dnr-converter
The rule-limits e2e fixture imported DeclarativeRule, ResourceType, RuleActionType, and getRuleSetPath from @adguard/tsurlfilter deep paths (declarative-converter and declarative-converter-utils) which no longer exist. These symbols are exported from @adguard/dnr-converter instead. This fixes both the Lint (TS2307) and E2E (cannot find package) CI failures.
1 parent e7e2c98 commit efc99a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/e2e/helpers/rule-limits-fixture.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import {
2626
type DeclarativeRule,
2727
ResourceType,
2828
RuleActionType,
29-
} from '@adguard/tsurlfilter/es/declarative-converter';
30-
import { getRuleSetPath } from '@adguard/tsurlfilter/es/declarative-converter-utils';
29+
getRuleSetPath,
30+
} from '@adguard/dnr-converter';
3131

3232
/**
3333
* Number of rules to generate per oversized ruleset.

0 commit comments

Comments
 (0)