Removed remaining paths that pass expected and actual of expectations to reporters

This commit is contained in:
Steve Gravrock
2025-09-20 16:14:54 -07:00
parent 7aaa16f576
commit 1e98a4b61b
8 changed files with 7 additions and 101 deletions

View File

@@ -3702,8 +3702,6 @@ describe('Env integration', function() {
expect(thrown.passed).toEqual(false);
expect(thrown.matcherName).toEqual('toEqual');
expect(thrown.message).toEqual('Expected 1 to equal 2.');
expect(thrown.actual).toEqual(1);
expect(thrown.expected).toEqual(2);
});
it('does not throw when the matcher passes', async function() {
@@ -3760,8 +3758,6 @@ describe('Env integration', function() {
expect(thrown.message).toEqual(
"Expected a promise to be resolved to 'b' but it was resolved to 'a'."
);
expect(thrown.actual).toBe(promise);
expect(thrown.expected).toEqual('b');
});
it('does not throw when the matcher passes', async function() {