Skip to content

Commit 7e7a77a

Browse files
committed
[INTERNAL] builder integration test: Enable verbose logging for build manifest test
To cover verbose logging logic.
1 parent ab4bd8b commit 7e7a77a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/lib/builder/builder.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -924,10 +924,13 @@ test.serial("Build library.i, bundling library.h with build manifest", async (t)
924924
const resultBuildManifestPath = path.join(__dirname,
925925
"..", "..", "tmp", "build", "library.i", "bundle-library.h-build-manifest", ".ui5", "build-manifest.json");
926926

927+
const log = require("@ui5/logger");
928+
log.setLevel("verbose");
927929
const graph1 = await generateProjectGraph.usingObject({
928930
dependencyTree: libraryHTree
929931
});
930932
graph1.setTaskRepository(taskRepository);
933+
931934
await graph1.build({
932935
destPath: libraryHDestPath,
933936
createBuildManifest: true
@@ -947,6 +950,7 @@ test.serial("Build library.i, bundling library.h with build manifest", async (t)
947950
destPath,
948951
createBuildManifest: true
949952
});
953+
log.setLevel("info");
950954
toISOStringStub.restore();
951955

952956
let expectedFiles = await findFiles(expectedPath);

0 commit comments

Comments
 (0)