@@ -62,7 +62,7 @@ describe('static build', () => {
62
62
env : { NODE_ENV : 'production' } ,
63
63
} )
64
64
65
- if ( ! env . OXIDE ) {
65
+ if ( env . ENGINE === 'stable' ) {
66
66
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
67
67
css `
68
68
.bg-primary {
@@ -73,7 +73,7 @@ describe('static build', () => {
73
73
)
74
74
}
75
75
76
- if ( env . OXIDE ) {
76
+ if ( env . ENGINE === 'oxide' ) {
77
77
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
78
78
css `
79
79
.bg-primary {
@@ -120,7 +120,7 @@ describe('static build', () => {
120
120
env : { NODE_ENV : 'production' } ,
121
121
} )
122
122
123
- if ( ! env . OXIDE ) {
123
+ if ( env . ENGINE === 'stable' ) {
124
124
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
125
125
css `
126
126
.bg-primary {
@@ -131,7 +131,7 @@ describe('static build', () => {
131
131
)
132
132
}
133
133
134
- if ( env . OXIDE ) {
134
+ if ( env . ENGINE === 'oxide' ) {
135
135
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
136
136
css `
137
137
.bg-primary {
@@ -175,7 +175,7 @@ describe('watcher', () => {
175
175
await appendToInputFile ( 'index.html' , html `<div class= "bg-red-500" > </ div> ` )
176
176
await runningProcess . onStderr ( ready )
177
177
178
- if ( ! env . OXIDE ) {
178
+ if ( env . ENGINE === 'stable' ) {
179
179
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
180
180
css `
181
181
.bg-red-500 {
@@ -192,7 +192,7 @@ describe('watcher', () => {
192
192
)
193
193
}
194
194
195
- if ( env . OXIDE ) {
195
+ if ( env . ENGINE === 'oxide' ) {
196
196
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
197
197
css `
198
198
.bg-red-500 {
@@ -242,7 +242,7 @@ describe('watcher', () => {
242
242
await appendToInputFile ( 'glob/index.html' , html `<div class= "bg-red-500" > </ div> ` )
243
243
await runningProcess . onStderr ( ready )
244
244
245
- if ( ! env . OXIDE ) {
245
+ if ( env . ENGINE === 'stable' ) {
246
246
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
247
247
css `
248
248
.bg-red-500 {
@@ -259,7 +259,7 @@ describe('watcher', () => {
259
259
)
260
260
}
261
261
262
- if ( env . OXIDE ) {
262
+ if ( env . ENGINE === 'oxide' ) {
263
263
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
264
264
css `
265
265
.bg-red-500 {
@@ -396,7 +396,7 @@ describe('watcher', () => {
396
396
)
397
397
await runningProcess . onStderr ( ready )
398
398
399
- if ( ! env . OXIDE ) {
399
+ if ( env . ENGINE === 'stable' ) {
400
400
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
401
401
css `
402
402
.btn {
@@ -415,7 +415,7 @@ describe('watcher', () => {
415
415
)
416
416
}
417
417
418
- if ( env . OXIDE ) {
418
+ if ( env . ENGINE === 'oxide' ) {
419
419
expect ( await readOutputFile ( 'index.css' ) ) . toIncludeCss (
420
420
css `
421
421
.btn {
0 commit comments