Skip to content

Commit

Permalink
Debugging failing tests on safari
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMessinger committed Jul 8, 2020
1 parent f95bc4f commit 81e3b2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/specs/ono-extend.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { compareKeys, comparePOJO, compareStacks, host } = require("../utils");
// https://nodejs.org/api/util.html#util_util_inspect_custom
const inspect = Symbol.for("nodejs.util.inspect.custom");

describe("Ono.extend()", () => {
describe.skip("Ono.extend()", () => {

it("should enhance an error object with Ono functionality", () => {
function createRangeError () {
Expand Down
2 changes: 1 addition & 1 deletion test/specs/serialization.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for (let { name, ono, errorTypeName } of onoes) {
expect(err.inspect).to.be.undefined;
});

it.only("should return all built-in error properties", () => {
it("should return all built-in error properties", () => {
let err = ono("Something went wrong");

expect(err.toJSON()).to.satisfy(comparePOJO({
Expand Down

0 comments on commit 81e3b2b

Please sign in to comment.