Update validate.test.ts

This commit is contained in:
freearhey 2023-10-23 22:24:11 +03:00
parent 94746756b5
commit 92bcf50d70
1 changed files with 0 additions and 14 deletions

View File

@ -6,20 +6,6 @@ type ExecError = {
}
describe('db:validate', () => {
it('shows an error if there is an empty line at the end of the file', () => {
try {
execSync('DATA_DIR=tests/__data__/input/validate/empty_line npm run db:validate', {
encoding: 'utf8'
})
process.exit(1)
} catch (error) {
expect((error as ExecError).status).toBe(1)
expect((error as ExecError).stdout).toContain(
'Error: empty lines at the end of file not allowed (channels.csv)'
)
}
})
it('shows an error if the number of columns in a row is incorrect', () => {
try {
execSync('DATA_DIR=tests/__data__/input/validate/wrong_num_cols npm run db:validate', {