Skip to content

Commit 728d4e7

Browse files
committed
update tests
1 parent f520318 commit 728d4e7

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

packages/astro/test/units/integrations/api.test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('Astro feature map', function () {
3636
let result = validateSupportedFeatures(
3737
'test',
3838
{
39-
hybridOutput: 'Stable',
39+
hybridOutput: 'stable',
4040
},
4141
{
4242
output: 'hybrid',
@@ -74,7 +74,7 @@ describe('Astro feature map', function () {
7474
it('should be supported with the correct config', () => {
7575
let result = validateSupportedFeatures(
7676
'test',
77-
{ staticOutput: 'Stable' },
77+
{ staticOutput: 'stable' },
7878
{
7979
output: 'static',
8080
},
@@ -86,7 +86,7 @@ describe('Astro feature map', function () {
8686
it("should not be valid if the config is correct, but the it's unsupported", () => {
8787
let result = validateSupportedFeatures(
8888
'test',
89-
{ staticOutput: 'Unsupported' },
89+
{ staticOutput: 'unsupported' },
9090
{
9191
output: 'static',
9292
},
@@ -99,7 +99,7 @@ describe('Astro feature map', function () {
9999
it('should be supported with the correct config', () => {
100100
let result = validateSupportedFeatures(
101101
'test',
102-
{ hybridOutput: 'Stable' },
102+
{ hybridOutput: 'stable' },
103103
{
104104
output: 'hybrid',
105105
},
@@ -112,7 +112,7 @@ describe('Astro feature map', function () {
112112
let result = validateSupportedFeatures(
113113
'test',
114114
{
115-
hybridOutput: 'Unsupported',
115+
hybridOutput: 'unsupported',
116116
},
117117
{
118118
output: 'hybrid',
@@ -126,7 +126,7 @@ describe('Astro feature map', function () {
126126
it('should be supported with the correct config', () => {
127127
let result = validateSupportedFeatures(
128128
'test',
129-
{ serverOutput: 'Stable' },
129+
{ serverOutput: 'stable' },
130130
{
131131
output: 'server',
132132
},
@@ -139,7 +139,7 @@ describe('Astro feature map', function () {
139139
let result = validateSupportedFeatures(
140140
'test',
141141
{
142-
serverOutput: 'Unsupported',
142+
serverOutput: 'unsupported',
143143
},
144144
{
145145
output: 'server',
@@ -156,7 +156,7 @@ describe('Astro feature map', function () {
156156
'test',
157157
{
158158
assets: {
159-
supportKind: 'Stable',
159+
supportKind: 'stable',
160160
isSharpCompatible: true,
161161
},
162162
},
@@ -176,7 +176,7 @@ describe('Astro feature map', function () {
176176
'test',
177177
{
178178
assets: {
179-
supportKind: 'Stable',
179+
supportKind: 'stable',
180180
isSquooshCompatible: true,
181181
},
182182
},
@@ -197,7 +197,7 @@ describe('Astro feature map', function () {
197197
'test',
198198
{
199199
assets: {
200-
supportKind: 'Unsupported',
200+
supportKind: 'unsupported',
201201
isNodeCompatible: false,
202202
},
203203
},

0 commit comments

Comments
 (0)