Skip to content
Snippets Groups Projects
Commit 930706c6 authored by Wissem BENSIDHOUM's avatar Wissem BENSIDHOUM
Browse files

remove the test part

parent bf8981bb
Branches
No related tags found
No related merge requests found
......@@ -2,4 +2,3 @@
# System files
.DS_Store
Thumbs.db
back-skeleton/.env
\ No newline at end of file
package com.takima.backskeleton;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.ApplicationContext;
import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest()
class BackSkeletonApplicationTests {
@Test
void contextLoads(ApplicationContext context) {
assertThat(context).isNotNull();
}
}
spring.datasource.url=jdbc:postgresql://localhost:5432/${DATABASE_NAME}
spring.datasource.username=${DATABASE_USER}
spring.datasource.password=${DATABASE_PASSWORD}
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
\ No newline at end of file
spring.datasource.url=jdbc:postgresql://localhost:5432/${DATABASE_NAME}
spring.datasource.username=${DATABASE_USER}
spring.datasource.password=${DATABASE_PASSWORD}
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
\ No newline at end of file
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment