FIX regex & test

This commit is contained in:
Norbert de Langen 2020-04-22 13:07:11 +02:00
parent d8725da3f4
commit a4b071a17e
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 6 additions and 6 deletions

View File

@ -44,7 +44,7 @@ export type Refs = Record<string, ComposedRef>;
export type RefId = string;
export type RefUrl = string;
const findFilename = /(\/((?:[a-z]+?)\.(.+))|\/)$/;
const findFilename = /(\/((?:[^\/]+?)\.[^\/]+?)|\/)$/;
export const getSourceType = (source: string) => {
const { origin: localOrigin, pathname: localPathname } = location;

View File

@ -27,7 +27,7 @@ describe('refs', () => {
describe('edge cases', () => {
it('returns "local" when source matches location with /index.html in path', () => {
// mockReturnValue(edgecaseLocations[0])
expect(getSourceType('https://storybook.js.org/storybook/iframe.html')).toBe([
expect(getSourceType('https://storybook.js.org/storybook/iframe.html')).toEqual([
'local',
'https://storybook.js.org/storybook',
]);
@ -35,16 +35,16 @@ describe('refs', () => {
});
// Other tests use "lastLocation" for the 'global' mock
it('returns "local" when source matches location', () => {
expect(getSourceType('https://storybook.js.org/storybook/iframe.html')).toBe([
expect(getSourceType('https://storybook.js.org/storybook/iframe.html')).toEqual([
'local',
'https://storybook.js.org/storybook',
]);
});
it('returns "external" when source does not match location', () => {
expect(getSourceType('https://external.com/storybook/iframe.html')).toBe(
expect(getSourceType('https://external.com/storybook/iframe.html')).toEqual([
'external',
'https://external.com/storybook'
);
'https://external.com/storybook',
]);
});
});
});