diff --git a/__tests__/html-outlook-outlook.test.ts b/__tests__/html-outlook-outlook.test.ts index 4720d59bda79ff900c22cb3f26b217eefdcbfc37..fc874999424b1865dea6316324553e764841dde5 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 b01ad46dbf2f74a5f364e6d4d0172dbb65ccf34d..65457cc487a461c3c9d5c78db88f4ab845ce83e7 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 3728f9e5c74f26c28e28d046985ae0d7b94c0833..ac156b52e010283c63522ae929909dc35b24a8ad 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)); });