Skip to content

Commit 5c81bd2

Browse files
committed
Removed test.only'ies
Signed-off-by: Jannik Hollenbach <jannik.hollenbach@iteratec.com>
1 parent 41a690a commit 5c81bd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hooks/notification/hook/Notifiers/RocketChatNotifier.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function getTestData() {
8080
return { scan, findings };
8181
}
8282

83-
test.only("Should Send Message With Findings And Severities", async () => {
83+
test("Should Send Message With Findings And Severities", async () => {
8484
const { scan, findings } = getTestData();
8585

8686
const rocketChatNotifier = new RocketChatNotifier(channel, scan, findings, {
@@ -103,7 +103,7 @@ test.only("Should Send Message With Findings And Severities", async () => {
103103
);
104104
});
105105

106-
test.only("Should use channel overwrite from annotation if set", async () => {
106+
test("Should use channel overwrite from annotation if set", async () => {
107107
const { scan, findings } = getTestData();
108108
scan.metadata.annotations = {
109109
"notification.securecodebox.io/rocket-chat-channel": "#team-42-channel",
@@ -129,7 +129,7 @@ test.only("Should use channel overwrite from annotation if set", async () => {
129129
);
130130
});
131131

132-
test.only("Should include link back to defectdojo if set in finding", async () => {
132+
test("Should include link back to defectdojo if set in finding", async () => {
133133
const { scan, findings } = getTestData();
134134

135135
findings[0].attributes = {

0 commit comments

Comments
 (0)