Skip to content

Commit d057807

Browse files
committed
stop skipping old scenarios
1 parent b7b9dc4 commit d057807

File tree

1 file changed

+12
-21
lines changed

1 file changed

+12
-21
lines changed

tests/scenarios/scenarios.ts

+12-21
Original file line numberDiff line numberDiff line change
@@ -94,27 +94,18 @@ export function supportMatrix(scenarios: Scenarios) {
9494
}
9595

9696
export function fullSupportMatrix(scenarios: Scenarios) {
97-
return (
98-
scenarios
99-
.expand({
100-
lts_3_28,
101-
lts_4_4,
102-
lts_4_8,
103-
lts_4_12,
104-
lts_5_4,
105-
lts_5_8,
106-
lts_5_12,
107-
release,
108-
beta,
109-
canary,
110-
})
111-
// we are skipping these scenarios for now and will likely add them back in one-by one once the
112-
// new vite based system is working as we like
113-
.skip('lts_3_28')
114-
.skip('lts_4_4')
115-
.skip('lts_4_8')
116-
.skip('lts_4_12')
117-
);
97+
return scenarios.expand({
98+
lts_3_28,
99+
lts_4_4,
100+
lts_4_8,
101+
lts_4_12,
102+
lts_5_4,
103+
lts_5_8,
104+
lts_5_12,
105+
release,
106+
beta,
107+
canary,
108+
});
118109
}
119110

120111
export function baseAddon(as: 'dummy-app' | 'dependency' = 'dependency') {

0 commit comments

Comments
 (0)