mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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',
|
||||
}),
|
||||
fetch(`${url}/iframe.html${query}`, {
|
||||
cors: 'no-cors',
|
||||
mode: 'no-cors',
|
||||
credentials: 'omit',
|
||||
}),
|
||||
]);
|
||||
|
@ -158,8 +158,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
]
|
||||
@ -203,8 +203,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html?version=2.1.3-rc.2",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
]
|
||||
@ -265,8 +265,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
]
|
||||
@ -355,8 +355,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
Array [
|
||||
@ -448,8 +448,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
Array [
|
||||
@ -542,8 +542,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
Array [
|
||||
@ -640,8 +640,8 @@ describe('Refs API', () => {
|
||||
Array [
|
||||
"https://example.com/iframe.html",
|
||||
Object {
|
||||
"cors": "no-cors",
|
||||
"credentials": "omit",
|
||||
"mode": "no-cors",
|
||||
},
|
||||
],
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user