Skip to content

Commit

Permalink
eliminate output
Browse files Browse the repository at this point in the history
  • Loading branch information
schristley committed Oct 18, 2024
1 parent bd3467d commit cb34d23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang/js/tests/airr.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ test('derive good AIRR Rearrangement TSV', async () => {
test('validate good rearrangement tsv', async () => {
let isValid = true;
const data = await airr.validate_rearrangement(rearrangement_good, true)
.catch(function(error) { console.error(error); isValid = false; });
.catch(function(error) { isValid = false; });
expect(data).not.toBeNull();
expect(isValid).toBe(true);
});

test('validate bad rearrangement tsv', async () => {
let isValid = true;
const data = await airr.validate_rearrangement(rearrangement_bad, true)
.catch(function(error) { console.error(error); isValid = false; });
.catch(function(error) { isValid = false; });
expect(isValid).toBe(false);
});

Expand Down

0 comments on commit cb34d23

Please sign in to comment.