2019-12-24 10:04:18 +08:00
|
|
|
import { QuestEditorToolBarController } from "../controllers/QuestEditorToolBarController";
|
2020-01-15 04:19:07 +08:00
|
|
|
import { QuestEditorToolBarView } from "./QuestEditorToolBarView";
|
2019-12-24 10:04:18 +08:00
|
|
|
import { GuiStore } from "../../core/stores/GuiStore";
|
|
|
|
import { create_area_store } from "../../../test/src/quest_editor/stores/store_creation";
|
|
|
|
import { QuestEditorStore } from "../stores/QuestEditorStore";
|
2019-12-26 07:44:30 +08:00
|
|
|
import { with_disposer } from "../../../test/src/core/observables/disposable_helpers";
|
2019-12-24 10:04:18 +08:00
|
|
|
|
2019-12-26 07:44:30 +08:00
|
|
|
test("Renders correctly.", () =>
|
|
|
|
with_disposer(disposer => {
|
|
|
|
const gui_store = disposer.add(new GuiStore());
|
|
|
|
const area_store = create_area_store(disposer);
|
|
|
|
const quest_editor_store = disposer.add(new QuestEditorStore(gui_store, area_store));
|
|
|
|
const tool_bar = disposer.add(
|
2020-01-15 04:19:07 +08:00
|
|
|
new QuestEditorToolBarView(
|
2019-12-26 07:44:30 +08:00
|
|
|
disposer.add(
|
|
|
|
new QuestEditorToolBarController(gui_store, area_store, quest_editor_store),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2019-12-24 10:04:18 +08:00
|
|
|
|
2019-12-26 07:44:30 +08:00
|
|
|
expect(tool_bar.element).toMatchSnapshot();
|
|
|
|
}));
|