-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f80d48
commit 86461d8
Showing
4 changed files
with
314 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,12 +27,14 @@ jobs: | |
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Add executable permission to gradlew | ||
run: cd ./Backend && chmod +x ./gradlew | ||
- name: Grant execute permission for gradlew | ||
working-directory: ./Backend | ||
run: chmod +x ./gradlew | ||
shell: bash | ||
|
||
- name: Build Project and Test | ||
run: cd ./Backend && ./gradlew build test | ||
working-directory: ./Backend | ||
run: ./gradlew build test | ||
|
||
- name: Setup MySQL | ||
uses: mirromutth/[email protected] | ||
|
30 changes: 15 additions & 15 deletions
30
BackEnd/src/test/java/springwebsocket/webchat/WebChatApplicationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package springwebsocket.webchat; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.test.context.web.WebAppConfiguration; | ||
|
||
@SpringBootTest | ||
@WebAppConfiguration | ||
class WebChatApplicationTests { | ||
|
||
@Test | ||
void contextLoads() { | ||
} | ||
|
||
} | ||
//package springwebsocket.webchat; | ||
// | ||
//import org.junit.jupiter.api.Test; | ||
//import org.springframework.boot.test.context.SpringBootTest; | ||
//import org.springframework.test.context.web.WebAppConfiguration; | ||
// | ||
//@SpringBootTest | ||
//@WebAppConfiguration | ||
//class WebChatApplicationTests { | ||
// | ||
// @Test | ||
// void contextLoads() { | ||
// } | ||
// | ||
//} |
Oops, something went wrong.