Skip to content

Commit

Permalink
Merge pull request #236 from jaredwray/upgrading-vitest-to-3.0.4
Browse files Browse the repository at this point in the history
upgrading vitest to 3.0.4
  • Loading branch information
jaredwray authored Feb 2, 2025
2 parents 70d6767 + 12d2bae commit d09ae15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
"@types/nunjucks": "^3.2.6",
"@types/pug": "^2.0.10",
"@types/underscore": "^1.13.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/coverage-v8": "^3.0.4",
"docula": "^0.9.6",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vitest": "^3.0.4",
"webpack": "^5.97.1",
"xo": "^0.60.0"
},
Expand Down
4 changes: 2 additions & 2 deletions test/ecto.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ it('write via ejs', async () => {

expect(fileSource).toBe('<h2>bar</h2>');

await fs.promises.rmdir(testOutputDirectory, {recursive: true});
await fs.promises.rm(testOutputDirectory, {recursive: true});
});

it('write via ejs with long path', async () => {
Expand All @@ -213,7 +213,7 @@ it('write via ejs with long path', async () => {

expect(fileSource).toBe('<h2>bar</h2>');

await fs.promises.rmdir(testOutputDirectory, {recursive: true});
await fs.promises.rm(testOutputDirectory, {recursive: true});
});

it('Render from Template - EJS', async () => {
Expand Down

0 comments on commit d09ae15

Please sign in to comment.