mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* refactor(desktop): move ext loading code in store from +page.ts to +page.svelte try to solve blank screen on slow network * Revert "refactor(desktop): move ext loading code in store from +page.ts to +page.svelte" This reverts commit 4a0a695ce615cee695849c64746ba569680ff8c4. * feat(desktop): add full-screen loading state and border beam animation - Implement full-screen loading component with BorderBeam animation - Add fullScreenLoading flag to appState store - Update extension store pages to use full-screen loading - Add border beam animation to Tailwind config - Enhance page loading experience with visual feedback * feat(desktop): add dance animation to loading screen and update imports - Add Dance component to FullScreenLoading with subtle background effect - Remove unused fade transition import from layout - Update lz-string import in utils to use default import - Clean up compress test imports * feat(desktop): add back button to full-screen loading component - Import ArrowLeftIcon and Constants from @kksh/ui - Add back button with absolute positioning - Remove "Go Home" text button - Enhance loading screen with improved navigation * refactor(desktop): update BorderBeam component to use Svelte 5 runes
8 lines
288 B
TypeScript
8 lines
288 B
TypeScript
import { expect, test } from "bun:test"
|
|
import { compressString, decompressString } from "../src"
|
|
|
|
test("decompressString", async () => {
|
|
const data = await fetch("https://dance.kunkun.sh/api/data").then((res) => res.text())
|
|
expect(decompressString(compressString(data))).toBe(data)
|
|
})
|