Skip to content

Commit

Permalink
Apparently Deno.test.ignore is not understood by docker version
Browse files Browse the repository at this point in the history
  • Loading branch information
acrodrig committed Oct 24, 2023
1 parent 0707c4a commit 0e9b077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ddl.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ test("Table Creation Postgres", function () {
});

// Execute the table creation on the provided platform
test.ignore("Actual Table", async function () {
test("Actual Table", { ignore: true }, async function () {
const provider = getProvider();
const ddl = DDL.createTable(AccountSchema as Schema, provider, "TestAccount");
console.log("ddl.test.ts[112] ➡️ ", ddl);
Expand Down

0 comments on commit 0e9b077

Please sign in to comment.