We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e62536b commit 51675c8Copy full SHA for 51675c8
test/commands/avro.test.ts
@@ -5,6 +5,7 @@ import {expect, test} from '@oclif/test'
5
describe('avro', () => {
6
//todo if file is invalid
7
test
8
+ .timeout(10000) // added timeout to remove timeout problem
9
.stdout()
10
.command(['avro'])
11
.exit(0)
@@ -49,4 +50,9 @@ describe('avro', () => {
49
50
.it('if schema file path is not passed for to_avro', ctx => {
51
expect(ctx.stdout).to.contain('Schema file is not provided')
52
})
53
+
54
+ // positive cases
55
+ // 1 - get schema
56
+ // 2 - to json
57
+ // 3 - to avro
58
0 commit comments