Clean up unsed filed

This commit is contained in:
Paulo Gustavo Veiga 2021-12-30 12:57:17 -08:00
parent 5e6228d9f4
commit 0ee9b46b2b
2 changed files with 0 additions and 19 deletions

View File

@ -1,10 +0,0 @@
import Exporter from "./Exporter";
import Mindmap from "../model/Mindmap";
class TextExporter implements Exporter {
export(mindplot: Mindmap): string {
return "some value";
}
}
export default TextExporter;

View File

@ -1,9 +0,0 @@
import TxtExporter from '../../src/components/export/TxtExporter';
import Mindmap from '../../src/components/model/Mindmap';
test('adds 1 + 2 to equal 3', () => {
const m = new Mindmap("some map");
const exporter = new TxtExporter();
console.log(exporter.export(m));
});