@@ -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