mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:01:07 +08:00
FIX regex & test
This commit is contained in:
parent
d8725da3f4
commit
a4b071a17e
@ -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;
|
||||
|
@ -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',
|
||||
]);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user