From 149ff1bbf9d7d805028965df7b88ce7d3ccf1989 Mon Sep 17 00:00:00 2001 From: igor <igor.markin@vereign.com> Date: Wed, 23 Dec 2020 12:52:32 +0300 Subject: [PATCH] Add all passing outlook-outlook cases --- __tests__/html-outlook-outlook.test.ts | 5 ++++- __tests__/htmltext-outlook-outlook.test.ts | 4 ++-- __tests__/plain-outlook-outlook.test.ts | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/__tests__/html-outlook-outlook.test.ts b/__tests__/html-outlook-outlook.test.ts index 4720d59..fc87499 100644 --- a/__tests__/html-outlook-outlook.test.ts +++ b/__tests__/html-outlook-outlook.test.ts @@ -13,5 +13,8 @@ describe("[HTML] Outlook-Outlook emails normalization", () => { ); describe("Chrome-Chrome", describeFunction("chrome-chrome", ["16"], [])); - describe("MacOS-MacOS", describeFunction("macos-macos", [], ["01", "02"])); + describe( + "MacOS-MacOS", + describeFunction("macos-macos", ["03", "04", "05", "08"]) + ); }); diff --git a/__tests__/htmltext-outlook-outlook.test.ts b/__tests__/htmltext-outlook-outlook.test.ts index b01ad46..65457cc 100644 --- a/__tests__/htmltext-outlook-outlook.test.ts +++ b/__tests__/htmltext-outlook-outlook.test.ts @@ -14,6 +14,6 @@ describe("[Pseudo PLAIN] Outlook-Outlook normalization", () => { ); // ["01"] - is a filter. Pass here names of directories with test cases you want to check - describe("Chrome-Chrome", describeFunction("chrome-chrome")); - describe("MacOS-MacOS", describeFunction("macos-macos", null, ["01", "02"])); + // describe("Chrome-Chrome", describeFunction("chrome-chrome")); + describe("MacOS-MacOS", describeFunction("macos-macos", null)); }); diff --git a/__tests__/plain-outlook-outlook.test.ts b/__tests__/plain-outlook-outlook.test.ts index 3728f9e..ac156b5 100644 --- a/__tests__/plain-outlook-outlook.test.ts +++ b/__tests__/plain-outlook-outlook.test.ts @@ -9,5 +9,5 @@ const testsPath = path.resolve(__dirname, `.${TESTS_GLOBAL_PATH}`); describe("[Plain] Outlook-Outlook normalization", () => { const describeFunction = createDescribePlainTestCases(testsPath); describe("Chrome-Chrome", describeFunction("chrome-chrome", ["16"])); - describe("MacOS-MacOS", describeFunction("macos-macos", null, ["01", "02"])); + describe("MacOS-MacOS", describeFunction("macos-macos", null)); }); -- GitLab