Skip to content

Commit 7a5a03a

Browse files
committed
fix tests
1 parent 57b4670 commit 7a5a03a

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

packages/kit/src/core/config/index.spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ test('fills in defaults', () => {
2929
template: 'src/app.html'
3030
},
3131
floc: false,
32+
headers: undefined,
33+
host: undefined,
3234
hydrate: true,
3335
inlineStyleThreshold: 0,
3436
methodOverride: {
@@ -55,6 +57,7 @@ test('fills in defaults', () => {
5557
onError: 'fail',
5658
pages: undefined
5759
},
60+
protocol: undefined,
5861
router: true,
5962
ssr: null,
6063
target: null,
@@ -135,6 +138,8 @@ test('fills in partial blanks', () => {
135138
template: 'src/app.html'
136139
},
137140
floc: false,
141+
headers: undefined,
142+
host: undefined,
138143
hydrate: true,
139144
inlineStyleThreshold: 0,
140145
methodOverride: {
@@ -161,6 +166,7 @@ test('fills in partial blanks', () => {
161166
onError: 'fail',
162167
pages: undefined
163168
},
169+
protocol: undefined,
164170
router: true,
165171
ssr: null,
166172
target: null,

packages/kit/src/core/config/test/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ test('load default config (esm)', async () => {
3131
template: join(cwd, 'src/app.html')
3232
},
3333
floc: false,
34+
headers: undefined,
35+
host: undefined,
3436
hydrate: true,
3537
inlineStyleThreshold: 0,
3638
methodOverride: {
@@ -54,6 +56,7 @@ test('load default config (esm)', async () => {
5456
onError: 'fail',
5557
pages: undefined
5658
},
59+
protocol: undefined,
5760
router: true,
5861
ssr: null,
5962
target: null,

0 commit comments

Comments
 (0)