Skip to content

Commit 85dd0f7

Browse files
committed
Removed useless test
1 parent 4edf8b2 commit 85dd0f7

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

src/main.test.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,6 @@
55
* It is advised to test all your modules with accompanying *.test.ts-files
66
*/
77

8-
import { expect } from 'chai';
98
// import { functionToTest } from "./moduleToTest";
109

11-
describe('module to test => function to test', () => {
12-
// initializing logic
13-
const expected = 5;
14-
15-
it(`should return ${expected}`, () => {
16-
const result = 5;
17-
// assign result a value from functionToTest
18-
expect(result).to.equal(expected);
19-
// or using the should() syntax
20-
result.should.equal(expected);
21-
});
22-
// ... more tests => it
23-
});
24-
2510
// ... more test suites => describe

0 commit comments

Comments
 (0)