Skip to content

Commit

Permalink
add a little more vcf testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Sep 11, 2018
1 parent b9e3e18 commit 3baf935
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/js_tests/spec/VCF.spec.js
Expand Up @@ -182,6 +182,11 @@ describe('VCF store', function() {
);
runs(function() {
expect(features.length).toEqual( 111 );
features.forEach(feature => {
expect(feature.get('end')).toBeGreaterThan(1206808843)
expect(feature.get('start')).toBeLessThan(12068510711)
expect(feature.get('seq_id')).toEqual('1')
})
});


Expand Down

0 comments on commit 3baf935

Please sign in to comment.