From ae92d07a5aee3a4fc6b1f3c82b98ddce8da35974 Mon Sep 17 00:00:00 2001 From: dannyrb Date: Thu, 25 Apr 2019 16:51:07 -0400 Subject: [PATCH] Stubbed sanity test --- src/App.test.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/App.test.js diff --git a/src/App.test.js b/src/App.test.js new file mode 100644 index 000000000..186b9d1d6 --- /dev/null +++ b/src/App.test.js @@ -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) + }) +})