Skip to content

Commit 0ed724d

Browse files
committed
tests
1 parent 28f4fa3 commit 0ed724d

File tree

249 files changed

+498
-498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+498
-498
lines changed

packages/deparser/__tests__/kitchen-sink/latest-misc-cascades.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-misc-cascades', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-misc-cascades', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/misc/cascades-1.sql",
88
"latest/misc/cascades-2.sql",
99
"latest/misc/cascades-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-misc-quotes_etc.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-misc-quotes_etc', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-misc-quotes_etc', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/misc/quotes_etc-1.sql",
88
"latest/misc/quotes_etc-2.sql"
99
]);

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_aggregate.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_aggregate', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_aggregate', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_aggregate-1.sql",
88
"latest/postgres/create_aggregate-2.sql",
99
"latest/postgres/create_aggregate-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_am.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_am', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_am', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_am-1.sql",
88
"latest/postgres/create_am-2.sql",
99
"latest/postgres/create_am-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_cast.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_cast', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_cast', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_cast-1.sql",
88
"latest/postgres/create_cast-2.sql",
99
"latest/postgres/create_cast-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_function_sql.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_function_sql', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_function_sql', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_function_sql-1.sql",
88
"latest/postgres/create_function_sql-2.sql",
99
"latest/postgres/create_function_sql-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_index', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_index', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_index-1.sql",
88
"latest/postgres/create_index-2.sql",
99
"latest/postgres/create_index-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_index_spgist.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_index_spgist', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_index_spgist', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_index_spgist-1.sql",
88
"latest/postgres/create_index_spgist-2.sql",
99
"latest/postgres/create_index_spgist-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_misc.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_misc', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_misc', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_misc-1.sql",
88
"latest/postgres/create_misc-2.sql",
99
"latest/postgres/create_misc-3.sql",

packages/deparser/__tests__/kitchen-sink/latest-postgres-create_operator.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { FixtureTestUtils } from '../../test-utils';
33
const fixtures = new FixtureTestUtils();
44

5-
it('latest-postgres-create_operator', () => {
6-
fixtures.runFixtureTests([
5+
it('latest-postgres-create_operator', async () => {
6+
await fixtures.runFixtureTests([
77
"latest/postgres/create_operator-1.sql",
88
"latest/postgres/create_operator-2.sql",
99
"latest/postgres/create_operator-3.sql",

0 commit comments

Comments
 (0)