From 2de83f7c46854d9138206a0199a29a28c486a9a3 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Wed, 8 Feb 2023 18:02:04 +0100 Subject: [PATCH] Add step to create the directory for the diff output --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 94ce8a19c3..5c03bc495f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -109,6 +109,11 @@ commands: - run: name: Create reports directory command: mkdir reports && mkdir reports/test-results + add-jest-snapshot-dir: + steps: + - run: + name: Create snapshots directory + command: mkdir reports && mkdir __device-tests__/__image_snapshots__/__diff_output__ install-node-version: steps: - run: @@ -166,6 +171,7 @@ jobs: steps: - npm-install - add-jest-reporter-dir + - add-jest-snapshot-dir - run: name: Set Environment Variables command: | @@ -263,6 +269,7 @@ jobs: - install-node-version - npm-install - add-jest-reporter-dir + - add-jest-snapshot-dir - run: name: Set Environment Variables command: |