1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00

fix: yarnv4 requires shebangs in shell scripts to allow execution (#7323)

This commit is contained in:
Christopher Kolstad 2024-06-07 16:29:00 +02:00 committed by GitHub
parent cedf19d2ec
commit 57ddfc9255
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 1 deletions

View File

@ -14,3 +14,4 @@ frontend/node_modules
!.yarn/**
!.yarnrc.yml
!frontend/.yarn/**
node_modules

View File

@ -1 +1,2 @@
yarnPath: .yarn/releases/yarn-4.2.2.cjs
nodeLinker: node-modules

View File

@ -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';'"

View File

@ -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();