Skip to content

Commit

Permalink
issue-#131 - npm audit --fix
Browse files Browse the repository at this point in the history
- Added some test fixtures for
  'insert' feature.
  • Loading branch information
elycruz committed Jun 28, 2024
1 parent 705871f commit 90f2afa
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/fixtures/insert/index2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import '../../assets/actual_a.scss';
import '../../assets/actual_b.scss';

import {someOp} from "./index2_sub-mod-1";
import {someOtherOp} from "./index2_sub-mod-2";

someOp();
someOtherOp();
3 changes: 3 additions & 0 deletions test/fixtures/insert/index2_sub-mod-1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import '../../assets/actual_c.scss';

export const someOp = () => null;
4 changes: 4 additions & 0 deletions test/fixtures/insert/index2_sub-mod-2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import '../../assets/actual_c.scss';
import '../../assets/actual_d.scss';

export const someOtherOp = () => null;
4 changes: 4 additions & 0 deletions test/fixtures/insert/index3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import '../../assets/actual_a.scss';
import './index3.css';

const yetAnotherOp = () => null;

0 comments on commit 90f2afa

Please sign in to comment.