We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2699ef commit 5abf0a6Copy full SHA for 5abf0a6
test-packages/test-scenarios/fastboot-config-location-test.mjs
@@ -95,7 +95,7 @@ appScenarios
95
},
96
redirect: 'manual',
97
});
98
- if (response.status === 500) throw new Error(await response.body.text());
+ if (response.status === 500) throw new Error(await response.text());
99
assert.equal(response.status, 302);
100
assert.equal(
101
response.headers.get('location'),
@@ -114,7 +114,7 @@ appScenarios
114
115
}
116
);
117
118
assert.notOk(response.headers.has('x-fastboot-path'));
119
120
0 commit comments