@glennsl/rescript-jest
Version:
Rescript bindings to the Jest testing framework
1,128 lines (1,037 loc) • 30.3 kB
JavaScript
;
var List = require("rescript/lib/js/list.js");
var $$Array = require("rescript/lib/js/array.js");
var Curry = require("rescript/lib/js/curry.js");
var Js_promise2 = require("rescript/lib/js/js_promise2.js");
var Js_undefined = require("rescript/lib/js/js_undefined.js");
function mapMod(f, x) {
if (x.NAME === "Just") {
return {
NAME: "Just",
VAL: f(x.VAL)
};
} else {
return {
NAME: "Not",
VAL: f(x.VAL)
};
}
}
var objectContaining = (function (properties) {
var spec = {};
properties.forEach(function (property) {
spec[property] = expect.anything();
});
return spec;
});
function affirm(x) {
if (typeof x !== "object") {
return ;
}
switch (x.TAG) {
case "Fail" :
fail(x._0);
return ;
case "ArrayContains" :
var match = x._0;
if (match.NAME === "Just") {
var match$1 = match.VAL;
return expect(match$1[0]).toContain(match$1[1]);
}
var match$2 = match.VAL;
return expect(match$2[0]).not.toContain(match$2[1]);
case "ArrayContainsEqual" :
var match$3 = x._0;
if (match$3.NAME === "Just") {
var match$4 = match$3.VAL;
return expect(match$4[0]).toContainEqual(match$4[1]);
}
var match$5 = match$3.VAL;
return expect(match$5[0]).not.toContainEqual(match$5[1]);
case "ArrayLength" :
var match$6 = x._0;
if (match$6.NAME === "Just") {
var match$7 = match$6.VAL;
return expect(match$7[0]).toHaveLength(match$7[1]);
}
var match$8 = match$6.VAL;
return expect(match$8[0]).not.toHaveLength(match$8[1]);
case "ArraySuperset" :
var match$9 = x._0;
if (match$9.NAME === "Just") {
var match$10 = match$9.VAL;
return expect(match$10[0]).toEqual(expect.arrayContaining(match$10[1]));
}
var match$11 = match$9.VAL;
return expect(match$11[0]).not.toEqual(expect.arrayContaining(match$11[1]));
case "Be" :
var match$12 = x._0;
if (match$12.NAME === "Just") {
var match$13 = match$12.VAL;
return expect(match$13[0]).toBe(match$13[1]);
}
var match$14 = match$12.VAL;
return expect(match$14[0]).not.toBe(match$14[1]);
case "Equal" :
var match$15 = x._0;
if (match$15.NAME === "Just") {
var match$16 = match$15.VAL;
return expect(match$16[0]).toEqual(match$16[1]);
}
var match$17 = match$15.VAL;
return expect(match$17[0]).not.toEqual(match$17[1]);
case "FloatCloseTo" :
var match$18 = x._0;
if (match$18.NAME === "Just") {
var match$19 = match$18.VAL;
return expect(match$19[0]).toBeCloseTo(match$19[1]);
}
var match$20 = match$18.VAL;
return expect(match$20[0]).not.toBeCloseTo(match$20[1]);
case "FloatSoCloseTo" :
var match$21 = x._0;
if (match$21.NAME === "Just") {
var match$22 = match$21.VAL;
return expect(match$22[0]).toBeCloseTo(match$22[1], match$22[2]);
}
var match$23 = match$21.VAL;
return expect(match$23[0]).not.toBeCloseTo(match$23[1], match$23[2]);
case "GreaterThan" :
var match$24 = x._0;
if (match$24.NAME === "Just") {
var match$25 = match$24.VAL;
return expect(match$25[0]).toBeGreaterThan(match$25[1]);
}
var match$26 = match$24.VAL;
return expect(match$26[0]).not.toBeGreaterThan(match$26[1]);
case "GreaterThanOrEqual" :
var match$27 = x._0;
if (match$27.NAME === "Just") {
var match$28 = match$27.VAL;
return expect(match$28[0]).toBeGreaterThanOrEqual(match$28[1]);
}
var match$29 = match$27.VAL;
return expect(match$29[0]).not.toBeGreaterThanOrEqual(match$29[1]);
case "LessThan" :
var match$30 = x._0;
if (match$30.NAME === "Just") {
var match$31 = match$30.VAL;
return expect(match$31[0]).toBeLessThan(match$31[1]);
}
var match$32 = match$30.VAL;
return expect(match$32[0]).not.toBeLessThan(match$32[1]);
case "LessThanOrEqual" :
var match$33 = x._0;
if (match$33.NAME === "Just") {
var match$34 = match$33.VAL;
return expect(match$34[0]).toBeLessThanOrEqual(match$34[1]);
}
var match$35 = match$33.VAL;
return expect(match$35[0]).not.toBeLessThanOrEqual(match$35[1]);
case "StringContains" :
var match$36 = x._0;
if (match$36.NAME === "Just") {
var match$37 = match$36.VAL;
return expect(match$37[0]).toEqual(expect.stringContaining(match$37[1]));
}
var match$38 = match$36.VAL;
return expect(match$38[0]).not.toEqual(expect.stringContaining(match$38[1]));
case "StringMatch" :
var match$39 = x._0;
if (match$39.NAME === "Just") {
var match$40 = match$39.VAL;
return expect(match$40[0]).toMatch(match$40[1]);
}
var match$41 = match$39.VAL;
return expect(match$41[0]).not.toMatch(match$41[1]);
case "Throws" :
var match$42 = x._0;
if (match$42.NAME === "Just") {
return expect(match$42.VAL).toThrow();
} else {
return expect(match$42.VAL).not.toThrow();
}
case "MatchInlineSnapshot" :
return expect(x._0).toMatchInlineSnapshot(x._1);
case "MatchSnapshot" :
return expect(x._0).toMatchSnapshot();
case "MatchSnapshotName" :
return expect(x._0).toMatchSnapshot(x._1);
case "ThrowsMatchSnapshot" :
return expect(x._0).toThrowErrorMatchingSnapshot();
case "Defined" :
var match$43 = x._0;
if (match$43.NAME === "Just") {
return expect(match$43.VAL).toBeDefined();
} else {
return expect(match$43.VAL).not.toBeDefined();
}
case "Falsy" :
var match$44 = x._0;
if (match$44.NAME === "Just") {
return expect(match$44.VAL).toBeFalsy();
} else {
return expect(match$44.VAL).not.toBeFalsy();
}
case "Null" :
var match$45 = x._0;
if (match$45.NAME === "Just") {
return expect(match$45.VAL).toBeNull();
} else {
return expect(match$45.VAL).not.toBeNull();
}
case "Truthy" :
var match$46 = x._0;
if (match$46.NAME === "Just") {
return expect(match$46.VAL).toBeTruthy();
} else {
return expect(match$46.VAL).not.toBeTruthy();
}
case "Undefined" :
var match$47 = x._0;
if (match$47.NAME === "Just") {
return expect(match$47.VAL).toBeUndefined();
} else {
return expect(match$47.VAL).not.toBeUndefined();
}
case "ObjectContains" :
var match$48 = x._0;
if (match$48.NAME === "Just") {
var match$49 = match$48.VAL;
return expect(match$49[0]).toEqual(objectContaining(match$49[1]));
}
var match$50 = match$48.VAL;
return expect(match$50[0]).not.toEqual(objectContaining(match$50[1]));
case "ObjectMatch" :
var match$51 = x._0;
if (match$51.NAME === "Just") {
var match$52 = match$51.VAL;
return expect(match$52[0]).toMatchObject(match$52[1]);
}
var match$53 = match$51.VAL;
return expect(match$53[0]).not.toMatchObject(match$53[1]);
}
}
function test$1(name, callback) {
test(name, (function () {
affirm(callback());
}));
}
function testAsync(name, timeout, callback) {
test(name, (function (finish) {
callback(function ($$case) {
affirm($$case);
finish();
});
}), Js_undefined.fromOption(timeout));
}
function testPromise(name, timeout, callback) {
test(name, (function () {
return Js_promise2.then(callback(), (function (a) {
return Promise.resolve(affirm(a));
}));
}), Js_undefined.fromOption(timeout));
}
function testAll(name, inputs, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
test(name$1, (function () {
affirm(callback(input));
}));
}), inputs);
}
function testAllPromise(name, inputs, timeout, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
test(name$1, (function () {
return Js_promise2.then(callback(input), (function (a) {
return Promise.resolve(affirm(a));
}));
}), Js_undefined.fromOption(timeout));
}), inputs);
}
function describe$1(label, f) {
describe(label, (function () {
f();
}));
}
function beforeAllAsync(timeout, callback) {
beforeAll((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
}
function beforeAllPromise(timeout, callback) {
beforeAll((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
}
function beforeEachAsync(timeout, callback) {
beforeEach((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
}
function beforeEachPromise(timeout, callback) {
beforeEach((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
}
function afterAllAsync(timeout, callback) {
afterAll((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
}
function afterAllPromise(timeout, callback) {
afterAll((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
}
function afterEachAsync(timeout, callback) {
afterEach((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
}
function afterEachPromise(timeout, callback) {
afterEach((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
}
function test$2(name, callback) {
it.only(name, (function () {
affirm(callback());
}));
}
function testAsync$1(name, timeout, callback) {
it.only(name, (function (finish) {
callback(function (assertion) {
affirm(assertion);
finish();
});
}), Js_undefined.fromOption(timeout));
}
function testPromise$1(name, timeout, callback) {
it.only(name, (function () {
return Js_promise2.then(callback(), (function (a) {
return Promise.resolve(affirm(a));
}));
}), Js_undefined.fromOption(timeout));
}
function testAll$1(name, inputs, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
it.only(name$1, (function () {
affirm(callback(input));
}));
}), inputs);
}
function testAllPromise$1(name, inputs, timeout, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
it.only(name$1, (function () {
return Js_promise2.then(callback(input), (function (a) {
return Promise.resolve(affirm(a));
}));
}), Js_undefined.fromOption(timeout));
}), inputs);
}
function describe$2(label, f) {
describe.only(label, (function () {
f();
}));
}
var Only = {
test: test$2,
testAsync: testAsync$1,
testPromise: testPromise$1,
testAll: testAll$1,
testAllPromise: testAllPromise$1,
describe: describe$2
};
function testAsync$2(name, param, callback) {
it.skip(name, callback);
}
function testPromise$2(name, param, callback) {
it.skip(name, Curry.__1(callback));
}
function testAll$2(name, inputs, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
it.skip(name$1, (function () {
return callback(input);
}));
}), inputs);
}
function testAllPromise$2(name, inputs, param, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
testPromise$2(name$1, undefined, (function () {
return callback(input);
}));
}), inputs);
}
function describe$3(label, f) {
describe.skip(label, (function () {
f();
}));
}
function fail$1(message) {
return {
TAG: "Fail",
_0: message
};
}
function expect$1(a) {
return {
NAME: "Just",
VAL: a
};
}
function expectFn(f, a) {
return {
NAME: "Just",
VAL: (function () {
return f(a);
})
};
}
function toBe(b, p) {
return {
TAG: "Be",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toBeCloseTo(b, p) {
return {
TAG: "FloatCloseTo",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toBeSoCloseTo(b, digits, p) {
return {
TAG: "FloatSoCloseTo",
_0: mapMod((function (a) {
return [
a,
p,
digits
];
}), b)
};
}
function toBeGreaterThan(b, p) {
return {
TAG: "GreaterThan",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toBeGreaterThanOrEqual(b, p) {
return {
TAG: "GreaterThanOrEqual",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toBeLessThan(b, p) {
return {
TAG: "LessThan",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toBeLessThanOrEqual(b, p) {
return {
TAG: "LessThanOrEqual",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toBeSupersetOf(b, p) {
return {
TAG: "ArraySuperset",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toContain(b, p) {
return {
TAG: "ArrayContains",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toContainEqual(b, p) {
return {
TAG: "ArrayContainsEqual",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toContainString(b, p) {
return {
TAG: "StringContains",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toEqual(b, p) {
return {
TAG: "Equal",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
function toHaveLength(l, p) {
return {
TAG: "ArrayLength",
_0: mapMod((function (a) {
return [
a,
p
];
}), l)
};
}
function toMatch(p, s) {
return {
TAG: "StringMatch",
_0: mapMod((function (a) {
return [
a,
new RegExp(s)
];
}), p)
};
}
function toMatchInlineSnapshot(param, inlineSnapshot) {
return {
TAG: "MatchInlineSnapshot",
_0: param.VAL,
_1: inlineSnapshot
};
}
function toMatchRe(re, p) {
return {
TAG: "StringMatch",
_0: mapMod((function (a) {
return [
a,
p
];
}), re)
};
}
function toMatchSnapshot(param) {
return {
TAG: "MatchSnapshot",
_0: param.VAL
};
}
function toMatchSnapshotWithName(param, name) {
return {
TAG: "MatchSnapshotName",
_0: param.VAL,
_1: name
};
}
function toThrow(f) {
return {
TAG: "Throws",
_0: f
};
}
function toThrowErrorMatchingSnapshot(param) {
return {
TAG: "ThrowsMatchSnapshot",
_0: param.VAL
};
}
function not_(param) {
return {
NAME: "Not",
VAL: param.VAL
};
}
function $eq$eq(a, b) {
return toBe(a, b);
}
function $great(a, b) {
return toBeGreaterThan(a, b);
}
function $great$eq(a, b) {
return toBeGreaterThanOrEqual(a, b);
}
function $less(a, b) {
return toBeLessThan(a, b);
}
function $less$eq(a, b) {
return toBeLessThanOrEqual(a, b);
}
function $eq(a, b) {
return toEqual(a, b);
}
function $less$great(a, b) {
return toEqual(not_(a), b);
}
function $bang$eq(a, b) {
return toBe(not_(a), b);
}
var Operators = {
$eq$eq: $eq$eq,
$great: $great,
$great$eq: $great$eq,
$less: $less,
$less$eq: $less$eq,
$eq: $eq,
$less$great: $less$great,
$bang$eq: $bang$eq
};
var Expect = {
expect: expect$1,
expectFn: expectFn,
toBe: toBe,
toBeCloseTo: toBeCloseTo,
toBeSoCloseTo: toBeSoCloseTo,
toBeGreaterThan: toBeGreaterThan,
toBeGreaterThanOrEqual: toBeGreaterThanOrEqual,
toBeLessThan: toBeLessThan,
toBeLessThanOrEqual: toBeLessThanOrEqual,
toBeSupersetOf: toBeSupersetOf,
toContain: toContain,
toContainEqual: toContainEqual,
toContainString: toContainString,
toEqual: toEqual,
toHaveLength: toHaveLength,
toMatch: toMatch,
toMatchInlineSnapshot: toMatchInlineSnapshot,
toMatchRe: toMatchRe,
toMatchSnapshot: toMatchSnapshot,
toMatchSnapshotWithName: toMatchSnapshotWithName,
toThrow: toThrow,
toThrowErrorMatchingSnapshot: toThrowErrorMatchingSnapshot,
not_: not_,
not__: not_,
Operators: Operators
};
function toBeDefined(a) {
return {
TAG: "Defined",
_0: a
};
}
function toBeFalsy(a) {
return {
TAG: "Falsy",
_0: a
};
}
function toBeNull(a) {
return {
TAG: "Null",
_0: a
};
}
function toBeTruthy(a) {
return {
TAG: "Truthy",
_0: a
};
}
function toBeUndefined(a) {
return {
TAG: "Undefined",
_0: a
};
}
function toContainProperties(props, p) {
return {
TAG: "ObjectContains",
_0: mapMod((function (a) {
return [
a,
p
];
}), props)
};
}
function toMatchObject(b, p) {
return {
TAG: "ObjectMatch",
_0: mapMod((function (a) {
return [
a,
p
];
}), b)
};
}
var ExpectJs = {
expect: expect$1,
expectFn: expectFn,
toBe: toBe,
toBeCloseTo: toBeCloseTo,
toBeSoCloseTo: toBeSoCloseTo,
toBeGreaterThan: toBeGreaterThan,
toBeGreaterThanOrEqual: toBeGreaterThanOrEqual,
toBeLessThan: toBeLessThan,
toBeLessThanOrEqual: toBeLessThanOrEqual,
toBeSupersetOf: toBeSupersetOf,
toContain: toContain,
toContainEqual: toContainEqual,
toContainString: toContainString,
toEqual: toEqual,
toHaveLength: toHaveLength,
toMatch: toMatch,
toMatchInlineSnapshot: toMatchInlineSnapshot,
toMatchRe: toMatchRe,
toMatchSnapshot: toMatchSnapshot,
toMatchSnapshotWithName: toMatchSnapshotWithName,
toThrow: toThrow,
toThrowErrorMatchingSnapshot: toThrowErrorMatchingSnapshot,
not_: not_,
not__: not_,
Operators: Operators,
toBeDefined: toBeDefined,
toBeFalsy: toBeFalsy,
toBeNull: toBeNull,
toBeTruthy: toBeTruthy,
toBeUndefined: toBeUndefined,
toContainProperties: toContainProperties,
toMatchObject: toMatchObject
};
function makeNewMock(self) {
return new (Function.prototype.bind.apply(self, arguments));
}
;
function new0(prim) {
return makeNewMock(prim);
}
function new1(self, a) {
return makeNewMock(self, a);
}
function new2(self, a, b) {
return makeNewMock(self, a, b);
}
function calls(self) {
return $$Array.map((function (args) { return args.length === 1 ? args[0] : args }), self.mock.calls.slice());
}
function instances(self) {
return self.mock.instances.slice();
}
var MockJs = {
new0: new0,
new1: new1,
new2: new2,
calls: calls,
instances: instances
};
function useFakeTimers(implementation, param) {
if (implementation !== undefined) {
jest.useFakeTimers(implementation);
} else {
jest.useFakeTimers();
}
}
function setSystemTime(systemTime) {
jest.setSystemTime(systemTime.VAL);
}
var Jest = {
useFakeTimers: useFakeTimers,
setSystemTime: setSystemTime
};
var JestJs = {};
function Runner(funarg) {
var affirm = funarg.affirm;
var test$3 = function (name, callback) {
test(name, (function () {
affirm(callback());
}));
};
var testAsync = function (name, timeout, callback) {
test(name, (function (finish) {
callback(function ($$case) {
affirm($$case);
finish();
});
}), Js_undefined.fromOption(timeout));
};
var testPromise = function (name, timeout, callback) {
test(name, (function () {
return Js_promise2.then(callback(), (function (a) {
return Promise.resolve(funarg.affirm(a));
}));
}), Js_undefined.fromOption(timeout));
};
var testAll = function (name, inputs, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
test(name$1, (function () {
affirm(callback(input));
}));
}), inputs);
};
var testAllPromise = function (name, inputs, timeout, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
test(name$1, (function () {
return Js_promise2.then(callback(input), (function (a) {
return Promise.resolve(funarg.affirm(a));
}));
}), Js_undefined.fromOption(timeout));
}), inputs);
};
var describe$4 = function (label, f) {
describe(label, (function () {
f();
}));
};
var beforeAllAsync = function (timeout, callback) {
beforeAll((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
};
var beforeAllPromise = function (timeout, callback) {
beforeAll((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
};
var beforeEachAsync = function (timeout, callback) {
beforeEach((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
};
var beforeEachPromise = function (timeout, callback) {
beforeEach((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
};
var afterAllAsync = function (timeout, callback) {
afterAll((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
};
var afterAllPromise = function (timeout, callback) {
afterAll((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
};
var afterEachAsync = function (timeout, callback) {
afterEach((function (finish) {
callback(function () {
finish();
});
}), Js_undefined.fromOption(timeout));
};
var afterEachPromise = function (timeout, callback) {
afterEach((function () {
return Promise.resolve(callback());
}), Js_undefined.fromOption(timeout));
};
var test$4 = function (name, callback) {
it.only(name, (function () {
affirm(callback());
}));
};
var testAsync$1 = function (name, timeout, callback) {
it.only(name, (function (finish) {
callback(function (assertion) {
affirm(assertion);
finish();
});
}), Js_undefined.fromOption(timeout));
};
var testPromise$1 = function (name, timeout, callback) {
it.only(name, (function () {
return Js_promise2.then(callback(), (function (a) {
return Promise.resolve(affirm(a));
}));
}), Js_undefined.fromOption(timeout));
};
var testAll$1 = function (name, inputs, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
it.only(name$1, (function () {
affirm(callback(input));
}));
}), inputs);
};
var testAllPromise$1 = function (name, inputs, timeout, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
it.only(name$1, (function () {
return Js_promise2.then(callback(input), (function (a) {
return Promise.resolve(funarg.affirm(a));
}));
}), Js_undefined.fromOption(timeout));
}), inputs);
};
var describe$5 = function (label, f) {
describe.only(label, (function () {
f();
}));
};
var Only = {
test: test$4,
testAsync: testAsync$1,
testPromise: testPromise$1,
testAll: testAll$1,
testAllPromise: testAllPromise$1,
describe: describe$5
};
var testAsync$2 = function (name, param, callback) {
it.skip(name, callback);
};
var testPromise$2 = function (name, param, callback) {
it.skip(name, Curry.__1(callback));
};
var testAll$2 = function (name, inputs, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
it.skip(name$1, (function () {
return callback(input);
}));
}), inputs);
};
var testAllPromise$2 = function (name, inputs, param, callback) {
List.iter((function (input) {
var name$1 = name + " - " + String(input);
testPromise$2(name$1, undefined, (function () {
return callback(input);
}));
}), inputs);
};
var describe$6 = function (label, f) {
describe.skip(label, (function () {
f();
}));
};
return {
test: test$3,
testAsync: testAsync,
testPromise: testPromise,
testAll: testAll,
testAllPromise: testAllPromise,
describe: describe$4,
beforeAllAsync: beforeAllAsync,
beforeAllPromise: beforeAllPromise,
beforeEachAsync: beforeEachAsync,
beforeEachPromise: beforeEachPromise,
afterAllAsync: afterAllAsync,
afterAllPromise: afterAllPromise,
afterEachAsync: afterEachAsync,
afterEachPromise: afterEachPromise,
Only: Only,
Skip: {
test: (function (prim0, prim1) {
it.skip(prim0, Curry.__1(prim1));
}),
testAsync: testAsync$2,
testPromise: testPromise$2,
testAll: testAll$2,
testAllPromise: testAllPromise$2,
describe: describe$6
}
};
}
function Skip_test(prim0, prim1) {
it.skip(prim0, Curry.__1(prim1));
}
var Skip = {
test: Skip_test,
testAsync: testAsync$2,
testPromise: testPromise$2,
testAll: testAll$2,
testAllPromise: testAllPromise$2,
describe: describe$3
};
var Todo = {
test: (function (prim) {
it.todo(prim);
})
};
var pass = "Ok";
exports.Runner = Runner;
exports.test = test$1;
exports.testAsync = testAsync;
exports.testPromise = testPromise;
exports.testAll = testAll;
exports.testAllPromise = testAllPromise;
exports.describe = describe$1;
exports.beforeAllAsync = beforeAllAsync;
exports.beforeAllPromise = beforeAllPromise;
exports.beforeEachAsync = beforeEachAsync;
exports.beforeEachPromise = beforeEachPromise;
exports.afterAllAsync = afterAllAsync;
exports.afterAllPromise = afterAllPromise;
exports.afterEachAsync = afterEachAsync;
exports.afterEachPromise = afterEachPromise;
exports.Only = Only;
exports.Skip = Skip;
exports.Todo = Todo;
exports.pass = pass;
exports.fail = fail$1;
exports.Expect = Expect;
exports.ExpectJs = ExpectJs;
exports.MockJs = MockJs;
exports.Jest = Jest;
exports.JestJs = JestJs;
/* Not a pure module */