started some test files.
changed dependencies around to make the program lighter in general.build-validation
parent
99ed430049
commit
2dc0b21b30
@ -0,0 +1,8 @@
|
||||
const assert = require('assert');
|
||||
|
||||
describe('default', ()=>{
|
||||
it('default-test', ()=>{
|
||||
let res = 5+2;
|
||||
assert.strictEqual(res, 7);
|
||||
})
|
||||
})
|
||||
@ -1,5 +0,0 @@
|
||||
describe('default', ()=>{
|
||||
it('print', ()=>{
|
||||
console.log("okay?")
|
||||
})
|
||||
})
|
||||
Loading…
Reference in New Issue