Add newlines between describe/it blocks
This commit is contained in:
parent
709661156a
commit
e63c3c727a
15 changed files with 455 additions and 295 deletions
|
@ -3,9 +3,9 @@ const path = require('path');
|
|||
const BrowserWindow = require('electron').remote.BrowserWindow;
|
||||
|
||||
describe('debugger module', function() {
|
||||
var fixtures, w;
|
||||
fixtures = path.resolve(__dirname, 'fixtures');
|
||||
w = null;
|
||||
var fixtures = path.resolve(__dirname, 'fixtures');
|
||||
var w = null;
|
||||
|
||||
beforeEach(function() {
|
||||
if (w != null) {
|
||||
w.destroy();
|
||||
|
@ -16,6 +16,7 @@ describe('debugger module', function() {
|
|||
height: 400
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
if (w != null) {
|
||||
w.destroy();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue