|
1 | 1 | import dedent from 'dedent-js'; |
| 2 | + |
2 | 3 | import { format as originalFormat, FormatFn } from '../src/sqlFormatter.js'; |
3 | | -import behavesLikePostgresqlFormatter from './behavesLikePostgresqlFormatter.js'; |
4 | | -import supportsArrayLiterals from './features/arrayLiterals.js'; |
5 | | -import supportsConstraints from './features/constraints.js'; |
| 4 | + |
6 | 5 | import supportsCreateTable from './features/createTable.js'; |
7 | | -import supportsCreateView from './features/createView.js'; |
8 | 6 | import supportsDropTable from './features/dropTable.js'; |
9 | | -import supportsIdentifiers from './features/identifiers.js'; |
10 | | -import supportsIsDistinctFrom from './features/isDistinctFrom.js'; |
11 | 7 | import supportsJoin from './features/join.js'; |
12 | | -import supportsLimiting from './features/limiting.js'; |
13 | 8 | import supportsOperators from './features/operators.js'; |
14 | 9 | import supportsSchema from './features/schema.js'; |
15 | | -import supportsSetOperations from './features/setOperations.js'; |
16 | 10 | import supportsStrings from './features/strings.js'; |
17 | | -import supportsTruncateTable from './features/truncateTable.js'; |
| 11 | +import supportsConstraints from './features/constraints.js'; |
| 12 | +import supportsIdentifiers from './features/identifiers.js'; |
| 13 | +import supportsParams from './options/param.js'; |
| 14 | +import supportsSetOperations from './features/setOperations.js'; |
| 15 | +import supportsLimiting from './features/limiting.js'; |
18 | 16 | import supportsUpdate from './features/update.js'; |
| 17 | +import supportsTruncateTable from './features/truncateTable.js'; |
| 18 | +import supportsCreateView from './features/createView.js'; |
| 19 | +import supportsIsDistinctFrom from './features/isDistinctFrom.js'; |
| 20 | +import supportsArrayLiterals from './features/arrayLiterals.js'; |
19 | 21 | import supportsDataTypeCase from './options/dataTypeCase.js'; |
20 | | -import supportsParams from './options/param.js'; |
| 22 | +import behavesLikePostgresqlFormatter from './behavesLikePostgresqlFormatter.js'; |
21 | 23 |
|
22 | 24 | describe('PostgreSqlFormatter', () => { |
23 | 25 | const language = 'postgresql'; |
|
0 commit comments