Skip to content

Commit

Permalink
add line reporter for e2e; add console.log for server err (voxel51#4252)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashankaryal authored Apr 11, 2024
1 parent 85339fc commit a746846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e-pw/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineConfig({
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter:
process.env.CI || process.env.IS_UTILITY_DOCKER
? [["dot"], ["html", { open: "never" }]]
? [["line"], ["html", { open: "never" }], ["github"]]
: [["line", { printSteps: true }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
Expand Down
2 changes: 1 addition & 1 deletion e2e-pw/src/oss/fixtures/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class OssLoader extends AbstractFiftyoneLoader {
console.log("webserver started");
})
.catch((err) => {
console.log("webserver failed to start");
console.log("webserver failed to start, err = ", err);
throw err;
});
}
Expand Down

0 comments on commit a746846

Please sign in to comment.