-
-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(server): exclude http and https from regex (#155)
* Exclude http and https from regex. Should fix #153 * Fix regex whitespace and simplify * Add test for joinURLPath
- Loading branch information
1 parent
2af8cf6
commit 0bb2ad9
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { joinURLPath } from './util' | ||
|
||
describe('util', () => { | ||
describe('#joinURLPath', () => { | ||
it('should join paths with relative public path', () => { | ||
expect(joinURLPath('public', 'style.css')).toBe('public/style.css') | ||
expect(joinURLPath('public/', 'style.css')).toBe('public/style.css') | ||
}) | ||
it('should join paths with absolute public path', () => { | ||
const publicPath = 'http://localhost:3001/public' | ||
|
||
expect(joinURLPath(publicPath, 'style.css')).toBe( | ||
`${publicPath}/style.css`, | ||
) | ||
expect(joinURLPath(`${publicPath}/`, 'style.css')).toBe( | ||
`${publicPath}/style.css`, | ||
) | ||
}) | ||
}) | ||
}) |