diff --git a/__tests__/html-outlook-outlook.test.ts b/__tests__/html-outlook-outlook.test.ts
index fc874999424b1865dea6316324553e764841dde5..6e3e05ae8cd76cf9f5d7ccc66c17151fd9f02767 100644
--- a/__tests__/html-outlook-outlook.test.ts
+++ b/__tests__/html-outlook-outlook.test.ts
@@ -17,4 +17,11 @@ describe("[HTML] Outlook-Outlook emails normalization", () => {
     "MacOS-MacOS",
     describeFunction("macos-macos", ["03", "04", "05", "08"])
   );
+  describe(
+    "Windows-Windows",
+    describeFunction("windows-windows", [
+      "06", // mismatch of sent and received emls. Passing though )
+      "08", // mismatch of sent and received emls. Passing though )
+    ])
+  );
 });
diff --git a/__tests__/htmltext-outlook-outlook.test.ts b/__tests__/htmltext-outlook-outlook.test.ts
index 65457cc487a461c3c9d5c78db88f4ab845ce83e7..42da8e7ae7a35666d878ba001a63983267aee3b3 100644
--- a/__tests__/htmltext-outlook-outlook.test.ts
+++ b/__tests__/htmltext-outlook-outlook.test.ts
@@ -14,6 +14,13 @@ 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("Chrome-Chrome", describeFunction("chrome-chrome"));
   describe("MacOS-MacOS", describeFunction("macos-macos", null));
+  describe(
+    "Windows-Windows",
+    describeFunction("windows-windows", [
+      "06", // mismatch of sent and received emls. Passing though )
+      "08", // mismatch of sent and received emls. Passing though )
+    ])
+  );
 });
diff --git a/__tests__/plain-outlook-outlook.test.ts b/__tests__/plain-outlook-outlook.test.ts
index ac156b52e010283c63522ae929909dc35b24a8ad..ac2fa3193cc94df7e20e179beebc825fae5f705d 100644
--- a/__tests__/plain-outlook-outlook.test.ts
+++ b/__tests__/plain-outlook-outlook.test.ts
@@ -10,4 +10,11 @@ describe("[Plain] Outlook-Outlook normalization", () => {
   const describeFunction = createDescribePlainTestCases(testsPath);
   describe("Chrome-Chrome", describeFunction("chrome-chrome", ["16"]));
   describe("MacOS-MacOS", describeFunction("macos-macos", null));
+  describe(
+    "Windows-Windows",
+    describeFunction("windows-windows", [
+      "06", // mismatch of sent and received emls. Passing though )
+      "08", // mismatch of sent and received emls. Passing though )
+    ])
+  );
 });