Skip to content

Commit 941145d

Browse files
author
tudor
committed
remove test - to be added in a different PR
1 parent 6d6754c commit 941145d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

packages/pglite-tools/tests/pg_dump.test.ts

-15
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,6 @@ describe('pgDump', () => {
1414
expect(content).toContain('PostgreSQL database dump')
1515
})
1616

17-
it('should dump an empty database twice', async () => {
18-
const pg = await PGlite.create()
19-
20-
for (let i = 0; i < 2; i++) {
21-
const fileName = `dump_${i}.sql`
22-
const dump = await pgDump({ pg, fileName })
23-
24-
expect(dump).toBeInstanceOf(File)
25-
expect(dump.name).toBe(fileName)
26-
27-
const content = await dump.text()
28-
expect(content).toContain('PostgreSQL database dump')
29-
}
30-
})
31-
3217
it('should dump a database with tables and data', async () => {
3318
const pg = await PGlite.create()
3419

0 commit comments

Comments
 (0)