[Gestalt web][patch] Pog: Changed path for the Focus.css file #4094
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request Template
Summary
What changed?
This PR fixes the import path for
Focus.cssin Gestalt Web tests. The path has been updated from./Focus.cssto../Focus.cssto correctly reference the file location.Why?
Tests in Gestalt Web were failing with an error indicating that
./Focus.csscannot be found. This was due to an incorrect relative path that didn't account for the actual file structure. The file is located one directory level up from where the import statement was looking.By correcting this path to
../Focus.css, the tests can now properly locate and import the Focus styles, resolving the test failures and ensuring the test suite runs successfully. This is a simple path correction that aligns the import with the actual project structure.Links