Skip to content

Commit

Permalink
test: disable silent to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Apr 7, 2023
1 parent ccbe0a5 commit 81975cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,14 @@ describe("api", () => {
const fixtureDirectory = resolveFixtureDirectory(fixture.name);
it("addDependency", async () => {
expect(
await addDependency("pathe", { cwd: fixtureDirectory })
await addDependency("pathe", { cwd: fixtureDirectory, silent: false })
).toBeTruthy();
expect(
await addDependency("ufo", { cwd: fixtureDirectory, dev: true })
await addDependency("ufo", {
cwd: fixtureDirectory,
dev: true,
silent: false,
})
).toBeTruthy();
});
});
Expand Down

0 comments on commit 81975cd

Please sign in to comment.