Skip to content

Commit

Permalink
jitpack includes tests -- fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YairLevi committed Jan 28, 2024
1 parent 526eed6 commit 0472519
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/test/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ class App(
)

fun main(args: Array<String>) {
val win = Window(dev = true, args = args)
win.setSize(700, 700)
win.setTitle("My first Javatron app!")

win.setURL("http://localhost:5173")
win.bind(
App()
)

win.addBeforeStartCallback { println("Started app...") }
win.addOnCloseCallback { println("Closed the app!") }

win.run()
// val win = Window(args = args)
// win.setSize(700, 700)
// win.setTitle("My first Javatron app!")
//
// win.setURL("http://localhost:5173")
// win.bind(
// App()
// )
//
// win.addBeforeStartCallback { println("Started app...") }
// win.addOnCloseCallback { println("Closed the app!") }
//
// win.run()
}

0 comments on commit 0472519

Please sign in to comment.