Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ladysnake/elmendorf
Testing helper library for Fabric/Quilt mods
https://github.com/ladysnake/elmendorf
fabric fabricmc fabricmc-library gametest minecraft quiltmc
Last synced: 1 day ago
JSON representation
Testing helper library for Fabric/Quilt mods
- Host: GitHub
- URL: https://github.com/ladysnake/elmendorf
- Owner: Ladysnake
- License: mit
- Created: 2021-12-02T23:48:16.000Z (about 3 years ago)
- Default Branch: 1.20
- Last Pushed: 2024-12-27T19:50:07.000Z (8 days ago)
- Last Synced: 2024-12-27T20:27:36.766Z (8 days ago)
- Topics: fabric, fabricmc, fabricmc-library, gametest, minecraft, quiltmc
- Language: Java
- Homepage:
- Size: 221 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# Elmendorf
A set of helpers for dealing with Minecraft's test framework in Fabric/Quilt mods.
The current version only includes a fix for "flaky tests" - that is, test cases that can be run more than once.## Adding Elmendorf to your project
You can add the library by inserting the following in your `build.gradle` :
```gradle
repositories {
maven {
name = "Ladysnake Mods"
url = "https://maven.ladysnake.org/releases"
content {
includeGroup 'io.github.ladysnake'
includeGroup 'org.ladysnake'
includeGroupByRegex 'io\\.github\\.onyxstudios.*'
}
}
}dependencies {
modImplementation "org.ladysnake:elmendorf:${elmendorf_version}"
}
```You can then add the library version to your `gradle.properties`file:
```properties
elmendorf_version = 0.x.y
```