Skip to content

Commit

Permalink
Merge branch 'master' into addPossibility2Exit
Browse files Browse the repository at this point in the history
  • Loading branch information
axelssonHakan committed May 23, 2018
2 parents bf38730 + 72443a5 commit 28b07f8
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 418 deletions.
2 changes: 1 addition & 1 deletion test/unit/node/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('Node command', () => {
let sandbox;

beforeEach(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
});

afterEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('Reporter create-static', () => {
let sandbox;

beforeEach(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
});

afterEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/protractor/plugins/reporter/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('Reporter index', () => {
Capabilities.set('platform', 'Linux');

beforeEach(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
sandbox.stub(fs, 'writeFile');
sandbox.stub(mocha.reporters, 'XUnit');
sandbox.stub(mkdirp, 'sync');
Expand Down
2 changes: 1 addition & 1 deletion test/unit/protractor/plugins/reporter/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('Reporter Utils', () => {
let sandbox;

beforeEach(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
});

afterEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/protractor/plugins/screenshoter/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ describe('Screenshoter Index', () => {
let sandbox;

beforeEach(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
const browser = {
element: sandbox.stub(),
};
Expand Down
2 changes: 1 addition & 1 deletion test/unit/protractor/plugins/screenshoter/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Screenshoter Utils', () => {
let sandbox;

beforeEach(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();
});

afterEach(() => {
Expand Down
14 changes: 7 additions & 7 deletions website/siteConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ const siteConfig = {
],
repoUrl: 'https://github.com/qlik-oss/after-work.js',
editUrl: 'https://github.com/qlik-oss/after-work.js/edit/master/docs/',
// algolia: {
// apiKey: '3acaf839e39f2abc9d53e17093978fe3',
// indexName: 'aw',
// algoliaOptions: {
// hitsPerPage: 7,
// },
// },
algolia: {
apiKey: '7391fc0b98505aa291842bf80570754f',
indexName: 'aw',
algoliaOptions: {
hitsPerPage: 7,
},
},
};

module.exports = siteConfig;
Loading

0 comments on commit 28b07f8

Please sign in to comment.