Remove lint warnings
This commit is contained in:
parent
adfa4844d1
commit
00261a5571
1 changed files with 3 additions and 3 deletions
|
@ -622,7 +622,7 @@ describe('browser-window module', function() {
|
||||||
|
|
||||||
describe('dev tool extensions', function () {
|
describe('dev tool extensions', function () {
|
||||||
it('serializes the registered extensions on quit', function () {
|
it('serializes the registered extensions on quit', function () {
|
||||||
var extensionName = 'foo'
|
var extensionName = 'foo';
|
||||||
var extensionPath = path.join(__dirname, 'fixtures', 'devtools-extensions', extensionName);
|
var extensionPath = path.join(__dirname, 'fixtures', 'devtools-extensions', extensionName);
|
||||||
var serializedPath = path.join(app.getPath('userData'), 'DevTools Extensions');
|
var serializedPath = path.join(app.getPath('userData'), 'DevTools Extensions');
|
||||||
|
|
||||||
|
@ -633,6 +633,6 @@ describe('browser-window module', function() {
|
||||||
BrowserWindow.removeDevToolsExtension(extensionName);
|
BrowserWindow.removeDevToolsExtension(extensionName);
|
||||||
app.emit('will-quit');
|
app.emit('will-quit');
|
||||||
assert.equal(fs.existsSync(serializedPath), false);
|
assert.equal(fs.existsSync(serializedPath), false);
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue