vitest 0.0.25 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/run/index.js CHANGED
@@ -98,9 +98,8 @@ export async function runSuite(suite, ctx) {
98
98
  else {
99
99
  try {
100
100
  await callHook(suite, 'beforeAll', [suite]);
101
- await Promise.all(suite.tasks.map(i => runTask(i, ctx)));
102
- // for (const t of suite.tasks)
103
- // await runTask(t, ctx)
101
+ for (const t of suite.tasks)
102
+ await runTask(t, ctx);
104
103
  await callHook(suite, 'afterAll', [suite]);
105
104
  }
106
105
  catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitest",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "A blazing fast unit test framework powered by Vite",
5
5
  "keywords": [
6
6
  "vite",