Skip to content

Commit 51675c8

Browse files
committed
[ISSUE#51]: timeout error removed, we need to add test cases
Signed-off-by: ashish <ashishpatel0720@gmail.com>
1 parent e62536b commit 51675c8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/commands/avro.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {expect, test} from '@oclif/test'
55
describe('avro', () => {
66
//todo if file is invalid
77
test
8+
.timeout(10000) // added timeout to remove timeout problem
89
.stdout()
910
.command(['avro'])
1011
.exit(0)
@@ -49,4 +50,9 @@ describe('avro', () => {
4950
.it('if schema file path is not passed for to_avro', ctx => {
5051
expect(ctx.stdout).to.contain('Schema file is not provided')
5152
})
53+
54+
// positive cases
55+
// 1 - get schema
56+
// 2 - to json
57+
// 3 - to avro
5258
})

0 commit comments

Comments
 (0)