-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c787425
commit d5cbd57
Showing
2 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
describe('DevTools Extension setup', function (){ | ||
var app; | ||
var app, storage, panel; | ||
|
||
beforeAll(function(){ | ||
app = window.app; | ||
app = window.app; | ||
storage = chrome.storage.sync; | ||
panel = chrome.devtools.panels; | ||
}); | ||
|
||
it('should creates Author Settings panel', function(){ | ||
expect(app).toBeDefined(); | ||
expect(chrome.devtools).toBeDefined(); | ||
expect(panel).toBeDefined(); | ||
}); | ||
|
||
it('should load theme CSS file from storage', function(){ | ||
expect(app).toBeDefined(); | ||
expect(chrome.storage).toBeDefined(); | ||
expect(storage).toBeDefined(); | ||
}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters