From 6c63e45784b2b4e6ce98814a52aafe32ab563bab Mon Sep 17 00:00:00 2001 From: supergi0 Date: Wed, 1 Nov 2023 11:55:42 +0530 Subject: [PATCH] skipping snowflake.ts file --- package.json | 2 +- test/connectors/snowflake.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 81a01587..581e12fa 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "dozer-samples", "version": "1.0.0", "scripts": { - "test": "mocha -r ts-node/register test/**/*.ts --timeout 60000 --exit --exclude ./test/connectors/snowflake.ts", + "test": "mocha -r ts-node/register test/**/*.ts --timeout 60000 --exit", "lint": "eslint test/**/*.js --quiet", "lint:fix": "eslint test/**/*.js --fix --quiet", "generate:grpc": "node ./test/scripts/proto.js" diff --git a/test/connectors/snowflake.ts b/test/connectors/snowflake.ts index efcb02c3..bff62a65 100644 --- a/test/connectors/snowflake.ts +++ b/test/connectors/snowflake.ts @@ -7,7 +7,7 @@ import { const TEST_PATH = './connectors/snowflake'; -describe('Connectors: Snowflake', async () => { +xdescribe('Connectors: Snowflake', async () => { beforeEach(async () => { const baseDir = path.join(__dirname, '../../'); const fullPath = path.join(baseDir, TEST_PATH); @@ -18,7 +18,7 @@ describe('Connectors: Snowflake', async () => { execSync('rm -rf .dozer && rm -f dozer.lock', { stdio: 'inherit' }); }); - it('should run and return API endpoints', async () => { + xit('should run and return API endpoints', async () => { const dozer = await initDozer(); await assertEndpointsWithRetry(); dozer.kill();