mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-22 22:57:57 +01:00
6da0d22d1b
Introduce typescript * Configure typescript support for jets * Fix cycle dependency * Configure typescript * Migrate mindplot to typescript * Merge branch 'develop' into feature/browser_export
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
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));
|
|
});
|