mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
Use fewer test suites with more tests in each one since there's so much boilerplate for defining an API test.
15 lines
293 B
Plaintext
15 lines
293 B
Plaintext
class Api {
|
|
foreign static value=(value)
|
|
foreign static value
|
|
}
|
|
|
|
Api.value = ["list", "of", "strings"]
|
|
|
|
// Do some stuff to trigger a GC (at least when GC stress testing enabled).
|
|
var s = "string"
|
|
for (i in 1...10) {
|
|
s = s + " more"
|
|
}
|
|
|
|
IO.print(Api.value) // expect: [list, of, strings]
|