We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b5923c commit d180eafCopy full SHA for d180eaf
tests/custom.test.ts
@@ -127,7 +127,7 @@ describe("test", () => {
127
pdf.file.pipe(writeStream);
128
}, 10_000_000);
129
130
- it("should generate a PDF url from helper", async () => {
+ it.skip("should generate a PDF url from helper", async () => {
131
const htmlBlob = new Blob([HTML], {
132
type: "text/html",
133
});
@@ -150,7 +150,7 @@ describe("test", () => {
150
expect(pdf.url).not.toBeNull();
151
152
153
- it("should merge two PDFs", async () => {
+ it.skip("should merge two PDFs", async () => {
154
const PDF1 = await fs.promises.readFile("./output.pdf");
155
const PDF2 = await fs.promises.readFile("./output_helper.pdf");
156
0 commit comments