Skip to main content
Module

x/postgres/test.ts

PostgreSQL driver for Deno
Go to Latest
File
#! /usr/bin/env deno run --allow-net --allow-env test.tsimport { runTests } from "./deps.ts";
import "./tests/data_types.ts";import "./tests/queries.ts";import "./tests/connection_params.ts";import "./tests/client.ts";import "./tests/pool.ts";import "./tests/utils.ts";
runTests();