Skip to content

Commit d4cad22

Browse files
committed
clean up code
1 parent 36bafba commit d4cad22

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

mascara/src/ui.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ const connectApp = function (readSw) {
3737
store.subscribe(() => {
3838
const state = store.getState()
3939
if (state.appState.shouldClose) window.close()
40-
console.log('IN the things?')
4140
})
4241
})
4342
}

mascara/test/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ var b = browserify();
88
// Remove old bundle
99
try {
1010
fs.unlinkSync(bundlePath)
11-
} catch (e) {}
11+
} catch (e) {
12+
console.error(e)
13+
}
1214

1315
var writeStream = fs.createWriteStream(bundlePath)
1416

mascara/test/window-load.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
const Helper = require('./util/mascara-test-helper.js')
22

33
window.addEventListener('load', () => {
4-
// const helper = new Helper()
5-
// helper.on('complete', () => require('../src/ui.js'))
6-
// helper.tryToCleanContext()
74
require('../src/ui.js')
85
})

0 commit comments

Comments
 (0)