Skip to content

Commit

Permalink
skipping snowflake.ts file
Browse files Browse the repository at this point in the history
  • Loading branch information
supergi0 committed Nov 1, 2023
1 parent 27b2200 commit 6c63e45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions test/connectors/snowflake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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();
Expand Down

0 comments on commit 6c63e45

Please sign in to comment.