lint fixes

This commit is contained in:
Jamie Vigliotta 2020-08-11 13:11:08 -07:00
parent 2fa8a8d61d
commit 52500f6097
3 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ export default class ISOTimeFormat {
if (typeof text === 'number' || text === undefined) {
return text;
}
return Date.parse(text);
}

View File

@ -3,5 +3,5 @@ import ISOTimeFormat from './ISOTimeFormat';
export default function () {
return function install(openmct) {
openmct.telemetry.addFormat(new ISOTimeFormat());
}
};
}

View File

@ -36,7 +36,7 @@ describe("the plugin", () => {
beforeAll(() => {
resetApplicationState();
})
});
beforeEach((done) => {
openmct = createOpenMct();