Skip to content

Commit

Permalink
remove unnecessary function
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Jan 22, 2025
1 parent e4998dc commit 454ec04
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions test/property/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import './set_experimental';

import { execSync } from 'child_process';
// @ts-ignore
import libraryDeepEqual from 'deep-is';
import fc from 'fast-check';
import { existsSync, mkdirSync, writeFileSync } from 'fs';

Expand Down Expand Up @@ -132,15 +130,3 @@ export const shortArrayConstraints = {
minLength: 5,
maxLength: 20
};

export function deepEqual(a: any, b: any): boolean {
const result = libraryDeepEqual(a, b);

if (result === false) {
console.info('deepEqual returned false');
console.info('deepEqual value a', a);
console.info('deepEqual value b', b);
}

return result;
}

0 comments on commit 454ec04

Please sign in to comment.