I need these two imports in my test:
import "./Wizard.js";
import { Wizard } from "./Wizard.js";
However, ESLint keeps deleting one of them on fix because it breaks the import/no-duplicates
-rule. How can I write both imports in one line?
If I leave out the first my tests break and if I leave out the second it doesn’t compile.