(bytes: Buffer | string)
| 12 | } from '../../../scripts/native/web-assets.mjs'; |
| 13 | |
| 14 | function sha256(bytes: Buffer | string): string { |
| 15 | return createHash('sha256').update(bytes).digest('hex'); |
| 16 | } |
| 17 | |
| 18 | describe('collectWebAssets', () => { |
| 19 | it('collects dist-web files into deterministic SEA asset keys', async () => { |
no test coverage detected