Skip to content

Commit

Permalink
Add window test
Browse files Browse the repository at this point in the history
  • Loading branch information
inukshuk committed Jan 12, 2016
1 parent a09d7c3 commit 5a2c161
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/browser/window_test.js
@@ -0,0 +1,10 @@
'use strict'

describe('Window', () => {
const Window = __require('browser/window')
const { BrowserWindow } = require('electron')

it('extends BrowserWindow', () => {
expect(new Window()).to.be.instanceof(BrowserWindow)
})
})

0 comments on commit 5a2c161

Please sign in to comment.