|
1 | | -import { Buffer } from 'https://deno.land/std@0.120.0/node/buffer.ts' |
| 1 | +import { Buffer } from 'https://deno.land/std@0.132.0/node/buffer.ts' |
2 | 2 | /* eslint no-console: 0 */ |
3 | 3 |
|
4 | 4 | import { exec } from './bootstrap.js' |
5 | 5 |
|
6 | 6 | import { t, nt, ot } from './test.js' // eslint-disable-line |
7 | 7 | import { net } from '../polyfills.js' |
8 | | -import fs from 'https://deno.land/std@0.120.0/node/fs.ts' |
9 | | -import crypto from 'https://deno.land/std@0.120.0/node/crypto.ts' |
| 8 | +import fs from 'https://deno.land/std@0.132.0/node/fs.ts' |
| 9 | +import crypto from 'https://deno.land/std@0.132.0/node/crypto.ts' |
10 | 10 |
|
11 | 11 | import postgres from '../src/index.js' |
12 | 12 | const delay = ms => new Promise(r => setTimeout(r, ms)) |
@@ -1632,7 +1632,7 @@ t('Copy write as first works', async() => { |
1632 | 1632 | ] |
1633 | 1633 | }) |
1634 | 1634 |
|
1635 | | -nt('Copy from file works', async() => { |
| 1635 | +t('Copy from file works', async() => { |
1636 | 1636 | await sql`create table test (x int, y int, z int)` |
1637 | 1637 | await new Promise(async r => fs |
1638 | 1638 | .createReadStream(rel('copy.csv')) |
@@ -1662,7 +1662,7 @@ t('Copy from works in transaction', async() => { |
1662 | 1662 | ] |
1663 | 1663 | }) |
1664 | 1664 |
|
1665 | | -nt('Copy from abort works', async() => { |
| 1665 | +t('Copy from abort works', async() => { |
1666 | 1666 | const sql = postgres(options) |
1667 | 1667 | const readable = fs.createReadStream(rel('copy.csv')) |
1668 | 1668 |
|
@@ -1827,7 +1827,7 @@ t('Describe a statement without columns', async() => { |
1827 | 1827 | ] |
1828 | 1828 | }) |
1829 | 1829 |
|
1830 | | -nt('Large object', async() => { |
| 1830 | +t('Large object', async() => { |
1831 | 1831 | const file = rel('index.js') |
1832 | 1832 | , md5 = crypto.createHash('md5').update(fs.readFileSync(file)).digest('hex') |
1833 | 1833 |
|
|
0 commit comments