Skip to content

Commit

Permalink
fix environment.properties (via #207)
Browse files Browse the repository at this point in the history
  • Loading branch information
sseliverstov authored Aug 22, 2020
1 parent 351149d commit 34f12fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/allure-js-commons/src/writers/AllureWriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class AllureWriter implements IAllureWriter {
}

writeEnvironmentInfo(info?: Record<string, string | undefined>) {
const text = JSON.stringify(info);
const text = stringify(info, { unicode: true }).toString();
const path = this.buildPath("environment.properties");
writeFileSync(path, text);
}
Expand Down

0 comments on commit 34f12fb

Please sign in to comment.