Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
test: skip tests that require a db connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Jan 8, 2021
1 parent 3c854ef commit 54e45aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/plugins/mssql/mssql.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ const Fastify = require("fastify");
const plugin = require(".");
const getConfig = require("../../config");

describe("mssql plugin", () => {
// TODO: look at standing up test SQL Server instance with Docker and disable skip for this
describe.skip("mssql plugin", () => {
let options;
let server;

Expand Down
3 changes: 2 additions & 1 deletion src/server.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const mockPage = faker.random.number({

const mockLastModified = faker.date.past().toISOString().split("T")[0];

describe("Server deployment", () => {
// TODO: look at standing up test SQL Server instance with Docker and disable skip for this
describe.skip("Server deployment", () => {
let config;
let server;

Expand Down

0 comments on commit 54e45aa

Please sign in to comment.