Prevented some tests from being repeated on CI

This commit is contained in:
Erik C. Thauvin 2023-03-25 23:08:08 -07:00
parent 0ca9f5b9f8
commit 20f8aef5c6
4 changed files with 21 additions and 2 deletions

View file

@ -17,6 +17,7 @@
package rife.render;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import rife.template.TemplateFactory;
@ -70,6 +71,7 @@ class TestFormat {
}
@Test
@Tag("no-ci")
void testQrCode() {
var t = TemplateFactory.SVG.get("qrCode");
var foo = "https://example.com/";
@ -78,6 +80,7 @@ class TestFormat {
}
@Test
@Tag("no-ci")
void testShortenUrl() {
var t = TemplateFactory.HTML.get("shortenUrl");
var url = "https://example.com/";