summaryrefslogtreecommitdiff
path: root/packages/frontend/test/aiscript
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-08-18 10:18:34 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-08-18 10:18:34 +0900
commite481205342fd24b7ef38cdc96c0510dc97bf1b70 (patch)
tree91ba6398c9b518785ce1ec8e654c07265706ba4f /packages/frontend/test/aiscript
parentchore: preserve notes with local reactions (#16412) (diff)
downloadmisskey-e481205342fd24b7ef38cdc96c0510dc97bf1b70.tar.gz
misskey-e481205342fd24b7ef38cdc96c0510dc97bf1b70.tar.bz2
misskey-e481205342fd24b7ef38cdc96c0510dc97bf1b70.zip
enhance(frontend): update aiscript to 1.1.0
Diffstat (limited to 'packages/frontend/test/aiscript')
-rw-r--r--packages/frontend/test/aiscript/ui.test.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/frontend/test/aiscript/ui.test.ts b/packages/frontend/test/aiscript/ui.test.ts
index c9df070bec..dc4041b135 100644
--- a/packages/frontend/test/aiscript/ui.test.ts
+++ b/packages/frontend/test/aiscript/ui.test.ts
@@ -320,7 +320,7 @@ describe('AiScript UI API', () => {
const { root, get, outputs } = await exe(`
let text_input = Ui:C:textInput({
onInput: print
- "default": 'a'
+ default: 'a'
label: 'b'
caption: 'c'
}, 'id')
@@ -361,7 +361,7 @@ describe('AiScript UI API', () => {
const { root, get, outputs } = await exe(`
let textarea = Ui:C:textarea({
onInput: print
- "default": 'a'
+ default: 'a'
label: 'b'
caption: 'c'
}, 'id')
@@ -402,7 +402,7 @@ describe('AiScript UI API', () => {
const { root, get, outputs } = await exe(`
let number_input = Ui:C:numberInput({
onInput: print
- "default": 1
+ default: 1
label: 'a'
caption: 'b'
}, 'id')
@@ -564,7 +564,7 @@ describe('AiScript UI API', () => {
const { root, get, outputs } = await exe(`
let switch = Ui:C:switch({
onChange: print
- "default": false
+ default: false
label: 'a'
caption: 'b'
}, 'id')
@@ -609,7 +609,7 @@ describe('AiScript UI API', () => {
{ text: 'B', value: 'b' }
]
onChange: print
- "default": 'a'
+ default: 'a'
label: 'c'
caption: 'd'
}, 'id')