From ac082e9f583e6463672a33efc302c75794c33ecf Mon Sep 17 00:00:00 2001 From: Jamie Vigliotta Date: Fri, 28 Aug 2020 10:46:05 -0700 Subject: [PATCH] removing openmct from tests as it is not required --- src/plugins/ISOTimeFormat/pluginSpec.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/plugins/ISOTimeFormat/pluginSpec.js b/src/plugins/ISOTimeFormat/pluginSpec.js index fac65e4248..abffc9d226 100644 --- a/src/plugins/ISOTimeFormat/pluginSpec.js +++ b/src/plugins/ISOTimeFormat/pluginSpec.js @@ -21,17 +21,12 @@ *****************************************************************************/ import ISOTimeFormat from './ISOTimeFormat.js'; -import { - createOpenMct, - resetApplicationState -} from 'utils/testing'; describe("the plugin", () => { const ISO_KEY = 'iso'; const JUNK = "junk"; const MOON_LANDING_TIMESTAMP = -14256000000; const MOON_LANDING_DATESTRING = '1969-07-20T00:00:00.000Z'; - let openmct; let isoFormatter; beforeAll(() => { @@ -39,16 +34,7 @@ describe("the plugin", () => { }); beforeEach((done) => { - openmct = createOpenMct(); - isoFormatter = new ISOTimeFormat(); - - openmct.on('start', done); - openmct.startHeadless(); - }); - - afterEach(() => { - resetApplicationState(openmct); }); describe("creates a new ISO based formatter", function () {