A centralized repository for storing reusable test assets used across applications such as REST APIs, mobile apps, and web clients.
This repository functions as a lightweight asset server by leveraging GitHub raw file URLs, making it easy to access test resources from anywhere.
/gifs β GIF files for UI and feature testing
/videos β Sample video files
/images β Images for testing
/jpgs β JPG image files
/pngs β PNG image files
/svgs β SVG vector files
/jsons β Mock JSON data and API responses Access files directly using GitHub's raw content URLs:
https://raw.githubusercontent.com/RedEye-Developers/Test-Assets/main/<folder-name>/<file-name>.<extension>https://raw.githubusercontent.com/RedEye-Developers/Test-Assets/main/videos/money-haist-reel.mp4- Mock API responses during development
- Testing media uploads (images, videos, GIFs)
- Seeding frontend and mobile applications with sample data
- Integration testing across multiple services
- Do not store sensitive or private data
- Keep file sizes within GitHub limits
- Use clear and consistent naming conventions
- Prefer adding files using GitHubβs "Add file" button (web UI)
- Avoid cloning the repository and pushing large batches of files
- Organize files logically by type
- Use descriptive file names (e.g.,
user-profile.json,sample-video.jpg) - Keep the repository clean and easy to navigate
RedEye-Developers π