We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccbe0a5 commit 81975cdCopy full SHA for 81975cd
test/index.test.ts
@@ -55,10 +55,14 @@ describe("api", () => {
55
const fixtureDirectory = resolveFixtureDirectory(fixture.name);
56
it("addDependency", async () => {
57
expect(
58
- await addDependency("pathe", { cwd: fixtureDirectory })
+ await addDependency("pathe", { cwd: fixtureDirectory, silent: false })
59
).toBeTruthy();
60
61
- await addDependency("ufo", { cwd: fixtureDirectory, dev: true })
+ await addDependency("ufo", {
62
+ cwd: fixtureDirectory,
63
+ dev: true,
64
+ silent: false,
65
+ })
66
67
});
68
0 commit comments