UNPKG

e2ed

Version:

E2E testing framework over Playwright

9 lines (8 loc) 308 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.expect = void 0; const expect_1 = require("./utils/expect"); /** * Wraps a value or promised value to assertion for further checks. */ exports.expect = ((actual, description) => new expect_1.Expect(actual, description));