Skip to content

Commit

Permalink
fix: prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaelin committed Oct 10, 2024
1 parent 03cbb48 commit d350678
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@ export function runTestFailureTest(
});

it('handles tests that error with an immutable or unserializable actual', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-unserializable-actual.test.js'));
const sessions = allSessions.filter(s =>
s.testFile.endsWith('fail-unserializable-actual.test.js'),
);
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql(['unserializable actual']);
Expand Down

0 comments on commit d350678

Please sign in to comment.