implemented first CI pipeline version with a test test that only checks if 1 is 1, needs implementation of actual tests

This commit is contained in:
2025-12-09 17:56:59 +01:00
parent 882b49a489
commit 8c201db539
6 changed files with 26 additions and 35 deletions
+9
View File
@@ -0,0 +1,9 @@
describe('Just a little test', () => {
it('1 should be 1', (done) => {
if(1 == 1){
done()
}else{
throw Error("something went terribly wrong")
}
});
});