podaboutlist / linkfix-for-discord

LinkFix brings link embeds back to your Discord server! Simply post Twitter, Instagram, TikTok, or Reddit links and LinkFix will reply with a rich media embed.
https://discord.com/application-directory/385950397493280805
GNU Affero General Public License v3.0
13 stars 4 forks source link

Add unit tests #88

Open shoegaze opened 1 month ago

shoegaze commented 1 month ago

Purpose

As the codebase gets larger (especially with the DB support), bugs will be more frequent and the project will be harder to maintain.

Adding testing will also make it easier to track existing features as well as more reliability when it comes to implementing new features.

General Implementation

Use something orthodox like Mocha or Jest?

  1. Set up tests/ directory
  2. Add npm test script to package.json
  3. Write scaffolding
  4. Write tests

Scope