mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Fixed unit tests.
This commit is contained in:
parent
85df1015f8
commit
b9036f56d3
@ -16,7 +16,6 @@ class QuestEditorToolbarControllerTests : WebTestSuite {
|
|||||||
fun can_create_a_new_quest() = testAsync {
|
fun can_create_a_new_quest() = testAsync {
|
||||||
val ctrl = disposer.add(QuestEditorToolbarController(
|
val ctrl = disposer.add(QuestEditorToolbarController(
|
||||||
components.uiStore,
|
components.uiStore,
|
||||||
components.questLoader,
|
|
||||||
components.areaStore,
|
components.areaStore,
|
||||||
components.questEditorStore,
|
components.questEditorStore,
|
||||||
))
|
))
|
||||||
@ -30,7 +29,6 @@ class QuestEditorToolbarControllerTests : WebTestSuite {
|
|||||||
fun a_failure_is_exposed_when_openFiles_fails() = testAsync {
|
fun a_failure_is_exposed_when_openFiles_fails() = testAsync {
|
||||||
val ctrl = disposer.add(QuestEditorToolbarController(
|
val ctrl = disposer.add(QuestEditorToolbarController(
|
||||||
components.uiStore,
|
components.uiStore,
|
||||||
components.questLoader,
|
|
||||||
components.areaStore,
|
components.areaStore,
|
||||||
components.questEditorStore,
|
components.questEditorStore,
|
||||||
))
|
))
|
||||||
@ -54,7 +52,6 @@ class QuestEditorToolbarControllerTests : WebTestSuite {
|
|||||||
fun undo_state_changes_correctly() = testAsync {
|
fun undo_state_changes_correctly() = testAsync {
|
||||||
val ctrl = disposer.add(QuestEditorToolbarController(
|
val ctrl = disposer.add(QuestEditorToolbarController(
|
||||||
components.uiStore,
|
components.uiStore,
|
||||||
components.questLoader,
|
|
||||||
components.areaStore,
|
components.areaStore,
|
||||||
components.questEditorStore,
|
components.questEditorStore,
|
||||||
))
|
))
|
||||||
@ -110,7 +107,6 @@ class QuestEditorToolbarControllerTests : WebTestSuite {
|
|||||||
fun state_changes_correctly_when_a_quest_is_loaded() = testAsync {
|
fun state_changes_correctly_when_a_quest_is_loaded() = testAsync {
|
||||||
val ctrl = disposer.add(QuestEditorToolbarController(
|
val ctrl = disposer.add(QuestEditorToolbarController(
|
||||||
components.uiStore,
|
components.uiStore,
|
||||||
components.questLoader,
|
|
||||||
components.areaStore,
|
components.areaStore,
|
||||||
components.questEditorStore,
|
components.questEditorStore,
|
||||||
))
|
))
|
||||||
|
@ -63,7 +63,7 @@ class TestComponents(private val ctx: TestContext) {
|
|||||||
var areaStore: AreaStore by default { AreaStore(areaAssetLoader) }
|
var areaStore: AreaStore by default { AreaStore(areaAssetLoader) }
|
||||||
|
|
||||||
var questEditorStore: QuestEditorStore by default {
|
var questEditorStore: QuestEditorStore by default {
|
||||||
QuestEditorStore(uiStore, areaStore, undoManager)
|
QuestEditorStore(questLoader, uiStore, areaStore, undoManager)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rendering
|
// Rendering
|
||||||
|
Loading…
Reference in New Issue
Block a user