mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Merge pull request #11491 from storybookjs/fix-cors-fetch
Composition: Fix syntax on `no-cors`
This commit is contained in:
commit
297b024079
@ -154,7 +154,7 @@ export const init: ModuleFn = ({ store, provider, fullAPI }, { runCheck = true }
|
|||||||
credentials: 'omit',
|
credentials: 'omit',
|
||||||
}),
|
}),
|
||||||
fetch(`${url}/iframe.html${query}`, {
|
fetch(`${url}/iframe.html${query}`, {
|
||||||
cors: 'no-cors',
|
mode: 'no-cors',
|
||||||
credentials: 'omit',
|
credentials: 'omit',
|
||||||
}),
|
}),
|
||||||
]);
|
]);
|
||||||
|
@ -158,8 +158,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html",
|
"https://example.com/iframe.html",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
@ -203,8 +203,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html?version=2.1.3-rc.2",
|
"https://example.com/iframe.html?version=2.1.3-rc.2",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
@ -265,8 +265,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html",
|
"https://example.com/iframe.html",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
@ -355,8 +355,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html",
|
"https://example.com/iframe.html",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
Array [
|
Array [
|
||||||
@ -448,8 +448,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html",
|
"https://example.com/iframe.html",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
Array [
|
Array [
|
||||||
@ -542,8 +542,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html",
|
"https://example.com/iframe.html",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
Array [
|
Array [
|
||||||
@ -640,8 +640,8 @@ describe('Refs API', () => {
|
|||||||
Array [
|
Array [
|
||||||
"https://example.com/iframe.html",
|
"https://example.com/iframe.html",
|
||||||
Object {
|
Object {
|
||||||
"cors": "no-cors",
|
|
||||||
"credentials": "omit",
|
"credentials": "omit",
|
||||||
|
"mode": "no-cors",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user