Sanity test only for now

This commit is contained in:
dannyrb 2019-04-25 16:52:44 -04:00
parent ae92d07a5a
commit eb562f730f
2 changed files with 8 additions and 11 deletions

View File

@ -1,11 +0,0 @@
import App from './App.js'
describe('Top level exports', () => {
test('have not changed', () => {
const expectedExports = ['App'].sort()
const exports = true // Object.keys(OHIFViewer).sort()
expect(exports).toEqual(true)
})
})

8
src/sanity.test.js Normal file
View File

@ -0,0 +1,8 @@
describe('Sanity Test', () => {
test('how many marbles?', () => {
const expectedMarbles = 4
const actualMarbles = 2 + 2
expect(actualMarbles).toEqual(expectedMarbles)
})
})