From 2ec2508c0e313612cbec9c8d3ca1a0afaedbea44 Mon Sep 17 00:00:00 2001 From: Tom French Date: Fri, 6 May 2022 23:04:31 +0100 Subject: [PATCH] fix: add missing comma to jest.config.js --- packages/desktop-client/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/desktop-client/jest.config.js b/packages/desktop-client/jest.config.js index f945a4e..62f3ed1 100644 --- a/packages/desktop-client/jest.config.js +++ b/packages/desktop-client/jest.config.js @@ -1,4 +1,4 @@ module.exports = { - moduleFileExtensions: ['js', 'json', 'testing.js'] + moduleFileExtensions: ['js', 'json', 'testing.js'], setupFiles: [], };