This repository contains tests to verify that the fish icon in the email signature loads properly.
clean_signature.html- Email signature with base64-encoded fish iconpersonal_signature.html- Email signature with direct reference to fish.pngtest_signature.js- Playwright tests to verify image loading
- Install dependencies:
npm install- Install Playwright browsers:
npx playwright install chromiumRun the tests with:
npm testThe tests verify that:
- The base64-encoded fish icon in clean_signature.html loads properly
- The direct reference to fish.png in personal_signature.html loads properly
If the image doesn't load:
- Check that the fish.png file exists in the root directory
- Ensure the base64 encoding doesn't have line breaks
- Verify the MIME type is correct (image/png)