Skip to content

Commit 4e1af12

Browse files
committed
Small unit testing fix
1 parent 98ca0d7 commit 4e1af12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

generators/app/templates/test/functional/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Browser.localhost(mockServer, 9000);
4141

4242
describe('User visits addin', function () {
4343

44-
const browser = new Browser();
44+
const browser = new Browser({runScripts: false});
4545

4646
// to enable zombie debugging, uncomment this line
4747
// browser.debug();
@@ -76,7 +76,7 @@ describe('User visits addin', function () {
7676

7777
describe('Show addin content after initialized and focus is called', function () {
7878
it('should display date select control', function () {
79-
browser.assert.style('#<%= root %>:not(.hidden)', 'display', '');
79+
browser.assert.style('#<%= root %>', 'display', '');
8080
});
8181
});
8282

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-addin",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "MyGeotab/Geotab Drive add-in generator",
55
"homepage": "https://github.com/geotab/generator-addin",
66
"author": {

0 commit comments

Comments
 (0)