mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 22:02:46 -07:00
002733cd99
* fix: prevent dynamic fn replacement when not imported by tuono * feat: update version to v0.10.3 * Revert "fix(deps): update dependency zustand to v5 (#55)" This reverts commitd7a086dfb1. * Revert "fix(deps): update dependency zustand to v4.5.5 (#37)" This reverts commitb36dc0b897. * Revert "chore(deps): update dependency @testing-library/react to v16 (#38)" This reverts commit1a1b62698c. * Revert "chore(deps): update dependency @tanstack/config to ^0.13.0 (#32)" This reverts commit6c7cc62371. * revert pnpm update * Revert "chore(deps): update dependency vitest to v2 (#45)" This reverts commitc5b5f6aefe. * Revert "chore(deps): update dependency node to v20.18.0 (#33)" This reverts commit588326cc57.
61 lines
2.1 KiB
TypeScript
61 lines
2.1 KiB
TypeScript
import { it, expect, describe } from 'vitest'
|
|
import { LazyLoadingPlugin } from '../src'
|
|
|
|
const SOURCE_CODE = `
|
|
import { createRoute, dynamic } from 'tuono'
|
|
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'))
|
|
const PokemonspokemonImport = dynamic(
|
|
() => import('./../src/routes/pokemons/[pokemon]'),
|
|
)
|
|
`
|
|
|
|
const NON_DYNAMIC_SOURCE = `
|
|
import { createRoute } from 'tuono'
|
|
import {dynamic} from 'external-lib'
|
|
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'))
|
|
const PokemonspokemonImport = dynamic(
|
|
() => import('./../src/routes/pokemons/[pokemon]'),
|
|
)
|
|
`
|
|
|
|
describe('Transpile tuono source', () => {
|
|
it('Into the client bundle', () => {
|
|
const bundle = LazyLoadingPlugin().transform?.(SOURCE_CODE, 'id')
|
|
expect(bundle)
|
|
.toBe(`import { createRoute, lazyLoadComponent as dynamic } from 'tuono';
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'));
|
|
const PokemonspokemonImport = dynamic(() => import('./../src/routes/pokemons/[pokemon]'));`)
|
|
})
|
|
|
|
it('Into the server bundle', () => {
|
|
const bundle = LazyLoadingPlugin().transform?.(SOURCE_CODE, 'id', {
|
|
ssr: true,
|
|
})
|
|
expect(bundle).toBe(`import { createRoute } from 'tuono';
|
|
import IndexImport from "./../src/routes/index";
|
|
import PokemonspokemonImport from "./../src/routes/pokemons/[pokemon]";`)
|
|
})
|
|
})
|
|
|
|
describe('Non tuono dynamic function', () => {
|
|
it('Into the client bundle', () => {
|
|
const bundle = LazyLoadingPlugin().transform?.(NON_DYNAMIC_SOURCE, 'id')
|
|
expect(bundle).toBe(`import { createRoute } from 'tuono';
|
|
import { dynamic } from 'external-lib';
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'));
|
|
const PokemonspokemonImport = dynamic(() => import('./../src/routes/pokemons/[pokemon]'));`)
|
|
})
|
|
|
|
it('Into the server bundle', () => {
|
|
const bundle = LazyLoadingPlugin().transform?.(NON_DYNAMIC_SOURCE, 'id', {
|
|
ssr: true,
|
|
})
|
|
expect(bundle).toBe(`import { createRoute } from 'tuono';
|
|
import { dynamic } from 'external-lib';
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'));
|
|
const PokemonspokemonImport = dynamic(() => import('./../src/routes/pokemons/[pokemon]'));`)
|
|
})
|
|
})
|