Skip to content
Snippets Groups Projects
plain-outlook-outlook.test.ts 690 B
import { describe } from "@jest/globals";
import { createDescribePlainTestCases } from "./utils";
const path = require("path");

const TESTS_GLOBAL_PATH = "/files/outlook-outlook";

const testsPath = path.resolve(__dirname, `.${TESTS_GLOBAL_PATH}`);

describe("[Plain] Outlook-Outlook normalization", () => {
  const describeFunction = createDescribePlainTestCases(testsPath);
  describe("Chrome-Chrome", describeFunction("chrome-chrome"));
  describe("MacOS-MacOS", describeFunction("macos-macos"));
  describe(
    "Windows-Windows",
    describeFunction("windows-windows", [
      "09",
      "10",
      "11",
      "12",
      "13",
      "14",
      "15",
      "16",
    ])
  );
});