Skip to content

Commit

Permalink
Test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Sep 1, 2024
1 parent 8121feb commit e9cf497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commitlint/tests/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ function fn(p: C) {
}
}

test("testing operators", () => {
test("testing DUs", () => {
let foo = new A();
expect(foo.x).toBe("hello");
expect(foo.y).toBe("hallo");
expect(foo.y).toBe("hello");

Check failure on line 56 in commitlint/tests/integration.test.ts

View workflow job for this annotation

GitHub Actions / Run commitlint-related tests

commitlint/tests/integration.test.ts > testing DUs

AssertionError: expected 'hallo' to be 'hello' // Object.is equality - Expected + Received - hello + hallo ❯ commitlint/tests/integration.test.ts:56:19
let bar = new B();
expect(bar.x).toBe(1);
expect(bar.y).toBe(2);
Expand Down

0 comments on commit e9cf497

Please sign in to comment.