Sanity test only for now
This commit is contained in:
parent
ae92d07a5a
commit
eb562f730f
@ -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
8
src/sanity.test.js
Normal file
@ -0,0 +1,8 @@
|
||||
describe('Sanity Test', () => {
|
||||
test('how many marbles?', () => {
|
||||
const expectedMarbles = 4
|
||||
const actualMarbles = 2 + 2
|
||||
|
||||
expect(actualMarbles).toEqual(expectedMarbles)
|
||||
})
|
||||
})
|
||||
Loading…
Reference in New Issue
Block a user