Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nitro-marky committed Sep 11, 2023
1 parent afa87a2 commit d12a898
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/lib/process/_tests_/unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ describe('listTranforming', () => {

const res = await listTransforming([enriched], processes, { ...defaultPolkadot, verbose: false })

console.log(res)

expect(res[0]).to.deep.contain({
id: '123',
status: 'Enabled',
Expand All @@ -51,7 +49,7 @@ describe('listTranforming', () => {
}

const res = await listTransforming([enriched], processes, { ...defaultPolkadot, verbose: true})
console.log(res)

expect(res[0]).to.deep.contain({
id: '123',
status: 'Disabled',
Expand All @@ -70,7 +68,7 @@ describe('listTranforming', () => {
}

const res = await listTransforming([enriched], processes, { ...defaultPolkadot, active: true})
console.log(res)

expect(res[0]).to.deep.contain({
id: '123',
status: 'Enabled',
Expand All @@ -89,7 +87,7 @@ describe('listTranforming', () => {
}

const res = await listTransforming([enriched], processes, { ...defaultPolkadot, active: true})
console.log(res)

expect(res[0]).to.equal(undefined)
})

Expand All @@ -104,7 +102,7 @@ describe('listTranforming', () => {
}

const res = await listTransforming([enriched], processes, { ...defaultPolkadot})
console.log(res)

expect(res[0]).to.deep.contain({
id: '123',
status: 'Disabled',
Expand All @@ -123,7 +121,7 @@ describe('listTranforming', () => {
}

const res = await listTransforming([enriched], processes, { ...defaultPolkadot, active: false})
console.log(res)

expect(res[0]).to.deep.contain({
id: '123',
status: 'Disabled',
Expand Down

0 comments on commit d12a898

Please sign in to comment.