1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-22 09:56:51 +01:00
blog/scripts/create-icons/index.test.ts
Matthias Kretschmann 05ad0470c2
migrate to biome (#944)
* migrate to biome

* cleanup

* fix

* use tsx

* script tweaks

* fix test runs

* path tweaks
2024-07-27 21:15:05 +01:00

48 lines
1.3 KiB
TypeScript

import fs from 'node:fs/promises'
import path from 'node:path'
import { test } from 'vitest'
import { generateIcons } from './index'
const distDir = path.resolve(__dirname, 'tmp')
test('should generate Astro & React components from SVG files', async () => {
// Act
await generateIcons(distDir)
// Assert: Check if the distribution directory exists
try {
await fs.stat(distDir)
} catch (err) {
throw new Error(`Distribution directory does not exist: ${distDir}`)
}
// Assert: Check if Props.d.ts exists
try {
await fs.stat(path.join(distDir, 'Props.d.ts'))
} catch (err) {
throw new Error('Props.d.ts does not exist')
}
// Assert: Check if an example Astro & React component exists
const exampleComponentPathAstro = path.join(distDir, 'Bitcoin.astro')
const exampleComponentPathReact = path.join(distDir, 'react', 'Bitcoin.tsx')
try {
await fs.stat(exampleComponentPathAstro)
} catch (err) {
throw new Error(
`Example Astro component does not exist: ${exampleComponentPathAstro}`
)
}
try {
await fs.stat(exampleComponentPathReact)
} catch (err) {
throw new Error(
`Example React component does not exist: ${exampleComponentPathReact}`
)
}
// cleanup
await fs.rm(distDir, { recursive: true, force: true })
})