ohif-viewer/src/sanity.test.js

9 lines
195 B
JavaScript
Raw Normal View History

2019-04-25 22:52:44 +02:00
describe('Sanity Test', () => {
test('how many marbles?', () => {
2019-05-29 14:39:54 +02:00
const expectedMarbles = 4;
const actualMarbles = 2 + 2;
2019-04-25 22:52:44 +02:00
2019-05-29 14:39:54 +02:00
expect(actualMarbles).toEqual(expectedMarbles);
});
});