Skip to content

Commit c2d4426

Browse files
authored
feat: add vitest globals (#19)
1 parent d3c8376 commit c2d4426

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

xtask/src/main.rs

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -136,25 +136,26 @@ fn main() {
136136
("worker", &globals["worker"]),
137137
("serviceworker", &globals["serviceworker"]),
138138
// Frameworks
139-
("commonjs", &globals["commonjs"]),
140139
("amd", &globals["amd"]),
141-
("mocha", &globals["mocha"]),
140+
("applescript", &globals["applescript"]),
141+
("atomtest", &globals["atomtest"]),
142+
("commonjs", &globals["commonjs"]),
143+
("embertest", &globals["embertest"]),
144+
("greasemonkey", &globals["greasemonkey"]),
142145
("jasmine", &globals["jasmine"]),
143146
("jest", &globals["jest"]),
144-
("phantomjs", &globals["phantomjs"]),
145147
("jquery", &globals["jquery"]),
146-
("qunit", &globals["qunit"]),
147-
("prototypejs", &globals["prototypejs"]),
148-
("shelljs", &globals["shelljs"]),
149148
("meteor", &globals["meteor"]),
149+
("mocha", &globals["mocha"]),
150150
("mongo", &globals["mongo"]),
151-
("protractor", &globals["protractor"]),
152-
("applescript", &globals["applescript"]),
153151
("nashorn", &globals["nashorn"]),
154-
("atomtest", &globals["atomtest"]),
155-
("embertest", &globals["embertest"]),
152+
("protractor", &globals["protractor"]),
153+
("prototypejs", &globals["prototypejs"]),
154+
("phantomjs", &globals["phantomjs"]),
155+
("shelljs", &globals["shelljs"]),
156156
("webextensions", &globals["webextensions"]),
157-
("greasemonkey", &globals["greasemonkey"]),
157+
("qunit", &globals["qunit"]),
158+
("vitest", &globals["vitest"]),
158159
]
159160
.iter()
160161
.map(|(name, vars)| Env {

0 commit comments

Comments
 (0)