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 76b9504 commit ccc0ae6Copy full SHA for ccc0ae6
packages/integration-tests/fixtures/release-value-with-quotes/release-value-with-quotes.test.ts
@@ -6,7 +6,7 @@ import { testIfNodeMajorVersionIsLessThan18 } from "../../utils/testIf";
6
7
function checkBundle(bundlePath: string): void {
8
const output = execSync(`node ${bundlePath}`, { encoding: "utf-8" });
9
- expect(output).toBe('i am a dangerous release value because I contain a "');
+ expect(output.trimEnd()).toBe('"i am a dangerous release value because I contain a \\""');
10
}
11
12
describe("Properly escapes release values before injecting", () => {
0 commit comments