From 2081a6b5a08b2b69764c01f3e5c74deae2da7869 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 6 Jan 2022 03:47:54 +0000 Subject: [PATCH] test(aws-protocoltests-json-10): extend from jest.config.base.js --- private/aws-protocoltests-json-10/jest.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/private/aws-protocoltests-json-10/jest.config.js b/private/aws-protocoltests-json-10/jest.config.js index 02eed352c6a86..a8d1c2e499123 100644 --- a/private/aws-protocoltests-json-10/jest.config.js +++ b/private/aws-protocoltests-json-10/jest.config.js @@ -1,4 +1,5 @@ +const base = require("../../jest.config.base.js"); + module.exports = { - preset: "ts-jest", - testMatch: ["**/*.spec.ts", "!**/*.browser.spec.ts", "!**/*.integ.spec.ts"], + ...base, };