mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
remove debugging logs
This commit is contained in:
parent
eff9e6ce4d
commit
58fa766e2f
2 changed files with 0 additions and 5 deletions
|
|
@ -9,7 +9,5 @@ export const mochaHooks = {
|
|||
sinon
|
||||
.stub(uploads, 'storage')
|
||||
.value(new MockStorage() as unknown as Storage)
|
||||
|
||||
console.log('mock cloud storage created')
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ export class MockStorage {
|
|||
|
||||
constructor() {
|
||||
this.buckets = {}
|
||||
console.log('MockStorage initialized')
|
||||
}
|
||||
|
||||
bucket(name: string) {
|
||||
|
|
@ -20,7 +19,6 @@ class MockBucket {
|
|||
constructor(name: string) {
|
||||
this.name = name
|
||||
this.files = {}
|
||||
console.log('MockBucket initialized')
|
||||
}
|
||||
|
||||
file(path: string) {
|
||||
|
|
@ -35,7 +33,6 @@ class MockFile {
|
|||
constructor(path: string) {
|
||||
this.path = path
|
||||
this.contents = Buffer.alloc(0)
|
||||
console.log('MockFile initialized')
|
||||
}
|
||||
|
||||
createWriteStream() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue