mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
describe('Just a little test', () => {
|
|
it('1 should be 1', (done) => {
|
|
if(1 == 1){
|
|
done()
|
|
}else{
|
|
throw Error("something went terribly wrong")
|
|
}
|
|
});
|
|
}); |