{"id":28375960,"url":"https://github.com/foxssake/vest","last_synced_at":"2025-08-01T14:13:06.073Z","repository":{"id":279224068,"uuid":"922484105","full_name":"foxssake/vest","owner":"foxssake","description":"A unit testing addon for Godot","archived":false,"fork":false,"pushed_at":"2025-07-25T07:28:20.000Z","size":1610,"stargazers_count":11,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-25T13:11:45.305Z","etag":null,"topics":["godot","godot-eng","godot-engine-","test","test-automation","unit-testing"],"latest_commit_sha":null,"homepage":"https://foxssake.github.io/vest/","language":"GDScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/foxssake.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"ko_fi":"foxssake"}},"created_at":"2025-01-26T10:45:12.000Z","updated_at":"2025-07-25T07:27:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"07ca87f3-744f-43a1-8d85-c55a23993201","html_url":"https://github.com/foxssake/vest","commit_stats":null,"previous_names":["foxssake/vest"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/foxssake/vest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxssake%2Fvest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxssake%2Fvest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxssake%2Fvest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxssake%2Fvest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/foxssake","download_url":"https://codeload.github.com/foxssake/vest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxssake%2Fvest/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268241127,"owners_count":24218374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["godot","godot-eng","godot-engine-","test","test-automation","unit-testing"],"created_at":"2025-05-29T23:40:11.575Z","updated_at":"2025-08-01T14:13:06.066Z","avatar_url":"https://github.com/foxssake.png","language":"GDScript","funding_links":["https://ko-fi.com/foxssake","https://ko-fi.com/T6T8WZD0W"],"categories":["Plugins and scripts"],"sub_categories":["XR"],"readme":"\u003c!-- ![vest logo](./icon.png) --\u003e\n\n# ![vest logo](./docs/assets/vest-favicon.png) vest\n\n[![License](https://img.shields.io/github/license/foxssake/vest)](https://github.com/foxssake/vest/blob/main/LICENSE)\n[![GitHub Release](https://img.shields.io/github/v/release/foxssake/vest)](https://github.com/foxssake/vest/releases)\n[![Documentation](https://img.shields.io/badge/Docs-github.io-blue)](https://foxssake.github.io/vest/)\n[![Discord](https://img.shields.io/discord/1253434107656933447?logo=discord\u0026label=Discord)](https://discord.gg/xWGh4GskG5)\n[![ko-fi](https://img.shields.io/badge/Support%20on-ko--fi-ff5e5b?logo=ko-fi)](https://ko-fi.com/T6T8WZD0W)\n\nA unit testing library for [Godot].\n\n## Features\n\n* ✨ Define tests with test methods or programmatically with `define()`\n* 📝 Parameterized tests to conveniently define multiple tests\n* 🎭 Mock classes dynamically, for simpler unit testing\n* ⚡ Run benchmarks, to find the best performing implementations\n* 🗒️ Generate reports in [TAP] format, to integrate with other test harnesses\n* 🔁 [Coroutines] for asynchronous cases\n* ▶️ In-editor UI for convenient testing\n* 🤖 Support for running in CI\n\n## Overview\n\nA testing addon for [Godot], *vest* aims to bring all the features of a\nfull-fledged testing framework, while staying as lightweight and nonintrusive\nas possible.\n\nTests written with *vest* look as follows:\n\n```gdscript\nextends VestTest\n\n# Specify name shown in reports\nfunc get_suite_name() -\u003e String:\n  return \"pow()\"\n\n# With define():\nfunc suite():\n  test(\"exp 0 should return 1\", func():\n    expect_equal(1, pow(128, 0))\n  )\n  test(\"exp 1 should return input\", func():\n    expect_equal(128, pow(128, 128))\n  )\n\n# With test methods:\nfunc test_exp_0_should_return_1():\n  expect_equal(1, pow(128, 0))\n\nfunc test_exp_1_should_return_inpt():\n  expect_equal(128, pow(128, 128))\n```\n\n## Install\n\n* [Godot AssetLibrary](https://godotengine.org/asset-library/asset/3758)\n* [GitHub release](https://github.com/foxssake/vest/releases)\n* [Source](https://github.com/foxssake/vest/archive/refs/heads/main.zip)\n\n## Usage\n\nExtensive documentation can be found at the [vest site]. A good starting point\nis the [Getting started] guide.\n\n*Examples* are included in the [`examples/`] folder and in the documentation.\n\n## Compatibility\n\nGodot v4.1.4 and up\n\n## License\n\n*vest* is licensed under the [MIT License](LICENSE).\n\n## Issues\n\nIn case of any issues, comments, or questions, please feel free to [open an issue]!\n\n## Funding\n\nIf you've found *vest* useful, feel free to fund us on ko-fi:\n\n[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/T6T8WZD0W)\n\nDonations are always appreciated and taken as gratitude for the work that has\nalready been done.\n\n\n[Godot]: https://godotengine.org/\n[TAP]: https://testanything.org/\n[Coroutines]: https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/gdscript_basics.html#awaiting-signals-or-coroutines\n[vest site]: https://foxssake.github.io/vest/latest/\n[Getting started]: https://foxssake.github.io/vest/latest/getting-started/installing-vest/\n[`examples/`]: https://github.com/foxssake/vest/tree/main/examples\n[open an issue]: https://github.com/foxssake/vest/issues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxssake%2Fvest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoxssake%2Fvest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxssake%2Fvest/lists"}