Stubbed sanity test

This commit is contained in:
dannyrb 2019-04-25 16:51:07 -04:00
parent ebefd8b758
commit ae92d07a5a

11
src/App.test.js Normal file
View File

@ -0,0 +1,11 @@
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)
})
})