diff --git a/.dockerignore b/.dockerignore index 5d3830a75c..6deb652b99 100644 --- a/.dockerignore +++ b/.dockerignore @@ -14,3 +14,4 @@ frontend/node_modules !.yarn/** !.yarnrc.yml !frontend/.yarn/** +node_modules diff --git a/frontend/.yarnrc.yml b/frontend/.yarnrc.yml index fc2f0d8d65..f46ce91e68 100644 --- a/frontend/.yarnrc.yml +++ b/frontend/.yarnrc.yml @@ -1 +1,2 @@ yarnPath: .yarn/releases/yarn-4.2.2.cjs +nodeLinker: node-modules diff --git a/frontend/check-imports.rc b/frontend/check-imports.rc index b367a6eaa3..b0cc4ed54a 100755 --- a/frontend/check-imports.rc +++ b/frontend/check-imports.rc @@ -1,3 +1,4 @@ +#!/usr/bin/env sh if grep -R --include="*.js" --include="*.jsx" --include="*.ts" --include="*.tsx" "from '@mui/icons-material'" src; then echo "Prohibited import from '@mui/icons-material' found. Use default imports referencing the file instead of the global package. Example: import Delete from '@mui/icons-material/Delete';'" diff --git a/frontend/src/component/feature/FeatureStrategy/FeatureStrategyCreate/FeatureStrategyCreate.test.tsx b/frontend/src/component/feature/FeatureStrategy/FeatureStrategyCreate/FeatureStrategyCreate.test.tsx index 3aa583f97d..fa78497bcc 100644 --- a/frontend/src/component/feature/FeatureStrategy/FeatureStrategyCreate/FeatureStrategyCreate.test.tsx +++ b/frontend/src/component/feature/FeatureStrategy/FeatureStrategyCreate/FeatureStrategyCreate.test.tsx @@ -165,7 +165,7 @@ describe('NewFeatureStrategyCreate', () => { expect(screen.getByText(expectedSegmentName)).toBeInTheDocument(); expect(screen.getByText(expectedConstraintValue)).toBeInTheDocument(); - }); + }, 10000); test('should change variants settings', async () => { const { expectedVariantName } = setupComponent();