tests = ({
successWithEnsure() {
return ensure(Math.PI > 3, Math.PI < 4);
},
failWithEnsure() {
ensure("foo", Math.PI < 3, true, false, undefined, new Error());
},
helloWorld() {
expect(typeof "hello").to.be("string");
},
"Fail with expect"() {
expect(1 + 1).to.be(3);
},
math: {
subtraction: [
() => {
expect(1 - 0).to.be(1);
},
() => {
expect(1 - 2).to.be(-1);
}
],
add: {
twoNumbers() {
expect(3 + 4).to.be(7);
}
}
},
more: [
() => {
expect(1 - 0).to.be(1);
},
() => {
expect(1 - 2).to.be(-1);
}
],
async fetchSuccess(i, id) {
console.log("Logging...", i, id);
if (!i) {
await fetch("https://jsonplaceholder.typicode.com/posts/1");
}
},
async fetch404(i) {
if (!i) {
const res = await fetch("https://jsonplaceholder.typicode.com/posts/999");
ensure(!res.ok, res.status === 404);
}
},
async fetchError(i) {
if (!i) {
await fetch("http://url.that.fails");
}
},
async fetchErrorPass(i) {
if (!i) {
const failure = await fails(async () => {
await fetch("http://url.that.fails");
});
ensure(_.isError(failure.error), failure.errorName === "TypeError");
}
}
})