-
Igor Markin authoredIgor Markin authored
plain-outlook-outlook.test.ts 744 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", ["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 )
])
);
});