1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-03 02:05:47 +02:00

fix(deps): update [frontend] update dependencies (major) [ci skip] (#16866)

* fix(deps): update [frontend] update dependencies

* attempt to fix test

* rollback twemoji parser to v16 [ci skip]

* fix [ci skip]

* rollback twemoji parser to v16

* attempt to fix test

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2025-11-30 11:14:34 +09:00
committed by GitHub
parent 3c11797c6d
commit 5fbe801d35
4 changed files with 291 additions and 581 deletions

View File

@@ -8,7 +8,6 @@ import { aiScriptReadline, createAiScriptEnv } from '@/aiscript/api.js';
import { errors, Interpreter, Parser, values } from '@syuilo/aiscript';
import {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
@@ -80,8 +79,9 @@ describe('AiScript common API', () => {
});
describe('readline', () => {
afterEach(() => {
beforeEach(() => {
vi.restoreAllMocks();
vi.clearAllMocks();
});
test.sequential('ok', async () => {
@@ -176,8 +176,9 @@ describe('AiScript common API', () => {
});
describe('dialog', () => {
afterEach(() => {
beforeEach(() => {
vi.restoreAllMocks();
vi.clearAllMocks();
});
test.sequential('ok', async () => {
@@ -215,8 +216,9 @@ describe('AiScript common API', () => {
});
describe('confirm', () => {
afterEach(() => {
beforeEach(() => {
vi.restoreAllMocks();
vi.clearAllMocks();
});
test.sequential('ok', async () => {
@@ -272,8 +274,9 @@ describe('AiScript common API', () => {
});
describe('api', () => {
afterEach(() => {
beforeEach(() => {
vi.restoreAllMocks();
vi.clearAllMocks();
});
test.sequential('successful', async () => {
@@ -347,7 +350,7 @@ describe('AiScript common API', () => {
miLocalStorage.removeItem('aiscript:widget:key');
});
afterEach(() => {
beforeEach(() => {
miLocalStorage.removeItem('aiscript:widget:key');
});