From 579c2b41d1951f356caa15bf06efa42a648e2bc2 Mon Sep 17 00:00:00 2001 From: dannyrb Date: Tue, 16 Jul 2019 14:27:22 -0400 Subject: [PATCH] Set path and enable workspaces --- .circleci/config.yml | 3 +++ platform/viewer/jest.config.js | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 24218d869..43369aa5d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,9 @@ jobs: unit_tests: <<: *defaults steps: + # Enable yarn workspaces + - run: yarn config set workspaces-experimental true + # Checkout code and ALL Git Tags - checkout: post: diff --git a/platform/viewer/jest.config.js b/platform/viewer/jest.config.js index 711186654..9109eb528 100644 --- a/platform/viewer/jest.config.js +++ b/platform/viewer/jest.config.js @@ -1,3 +1,5 @@ +const path = require("path"); + module.exports = { verbose: true, testMatch: ["/src/**/*.test.js"],