We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d6754c commit 941145dCopy full SHA for 941145d
packages/pglite-tools/tests/pg_dump.test.ts
@@ -14,21 +14,6 @@ describe('pgDump', () => {
14
expect(content).toContain('PostgreSQL database dump')
15
})
16
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
32
it('should dump a database with tables and data', async () => {
33
const pg = await PGlite.create()
34
0 commit comments