Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Added project name in regex tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzlamateen committed Aug 17, 2024
1 parent f80c26e commit bfbd238
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/common/tests/regex.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,22 +253,22 @@ describe('regex.test', () => {
const positiveCases = [
{
url: 'https://example.com/projects/@etherealengine/default-project/assets/images/logo.png',
projectName: 'default-project',
projectName: '@etherealengine/default-project',
assetPath: 'assets/images/logo.png'
},
{
url: 'https://example.com/static-resources/@etherealengine/default-project/assets/images/logo.png',
projectName: 'default-project',
projectName: '@etherealengine/default-project',
assetPath: 'assets/images/logo.png'
},
{
url: 'https://example.com/projects/@etherealengine/default-project/assets/animations/emotes.glb',
projectName: 'default-project',
projectName: '@etherealengine/default-project',
assetPath: 'assets/animations/emotes.glb'
},
{
url: 'https://example.com/projects/@etherealengine/default-project/assets/animations/locomotion.glb',
projectName: 'default-project',
projectName: '@etherealengine/default-project',
assetPath: 'assets/animations/locomotion.glb'
}
]
Expand Down

0 comments on commit bfbd238

Please sign in to comment.