diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-25 20:29:26 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-25 20:29:26 +0900 |
| commit | 3b65be8b91026e6aca300bfeb0ba51fd00433d48 (patch) | |
| tree | 0dedebf8b9e10f8b1c41daa66e74f8017167988f /packages/frontend/test/aiscript | |
| parent | refactor (diff) | |
| download | misskey-3b65be8b91026e6aca300bfeb0ba51fd00433d48.tar.gz misskey-3b65be8b91026e6aca300bfeb0ba51fd00433d48.tar.bz2 misskey-3b65be8b91026e6aca300bfeb0ba51fd00433d48.zip | |
clean up
Diffstat (limited to 'packages/frontend/test/aiscript')
| -rw-r--r-- | packages/frontend/test/aiscript/ui.test.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/frontend/test/aiscript/ui.test.ts b/packages/frontend/test/aiscript/ui.test.ts index dc4041b135..44a50aaa62 100644 --- a/packages/frontend/test/aiscript/ui.test.ts +++ b/packages/frontend/test/aiscript/ui.test.ts @@ -316,7 +316,6 @@ describe('AiScript UI API', () => { describe('textInput', () => { test.concurrent('all options', async () => { - // https://github.com/aiscript-dev/aiscript/pull/948 const { root, get, outputs } = await exe(` let text_input = Ui:C:textInput({ onInput: print @@ -357,7 +356,6 @@ describe('AiScript UI API', () => { describe('textarea', () => { test.concurrent('all options', async () => { - // https://github.com/aiscript-dev/aiscript/pull/948 const { root, get, outputs } = await exe(` let textarea = Ui:C:textarea({ onInput: print @@ -398,7 +396,6 @@ describe('AiScript UI API', () => { describe('numberInput', () => { test.concurrent('all options', async () => { - // https://github.com/aiscript-dev/aiscript/pull/948 const { root, get, outputs } = await exe(` let number_input = Ui:C:numberInput({ onInput: print @@ -560,7 +557,6 @@ describe('AiScript UI API', () => { describe('switch', () => { test.concurrent('all options', async () => { - // https://github.com/aiscript-dev/aiscript/pull/948 const { root, get, outputs } = await exe(` let switch = Ui:C:switch({ onChange: print @@ -601,7 +597,6 @@ describe('AiScript UI API', () => { describe('select', () => { test.concurrent('all options', async () => { - // https://github.com/aiscript-dev/aiscript/pull/948 const { root, get, outputs } = await exe(` let select = Ui:C:select({ items: [ |