Skip to content

Commit

Permalink
fix paths after cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoffer Åström committed Nov 2, 2017
1 parent 55f8648 commit c4ccf66
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/protractor/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global browser */
const path = require('path');
const { getIPaddress, httpServer, logSeleniumNodeInfo } = require('../utils');
const { getIPaddress, httpServer, logSeleniumNodeInfo } = require('./utils');

const reporterPath = path.resolve(__dirname, './plugins/reporter/index.js');
const screenshoterPath = path.resolve(__dirname, './plugins/screenshoter/index.js');
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/unit/plugins/reporter/create-static.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require('fs');
const report = require('../../../../src/plugins/reporter/create-static');
const report = require('../../../../src/protractor/plugins/reporter/create-static');

describe('Reporter create-static', () => {
let sandbox;
Expand Down
4 changes: 2 additions & 2 deletions test/unit/plugins/reporter/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ const Promise = require('bluebird');
const fs = require('fs');
const mocha = require('mocha');
const mkdirp = require('mkdirp');
const uiReport = require('../../../../src/plugins/reporter/index');
const utils = require('../../../../src/plugins/reporter/utils');
const uiReport = require('../../../../src/protractor/plugins/reporter/index');
const utils = require('../../../../src/protractor/plugins/reporter/utils');

describe('Reporter index', () => {
let sandbox;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/plugins/reporter/utils.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const path = require('path');
const fs = require('fs');
const mkdirp = require('mkdirp');
const utils = require('../../../../src/plugins/reporter/utils');
const utils = require('../../../../src/protractor/plugins/reporter/utils');

describe('Reporter Utils', () => {
let sandbox;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/plugins/screenshoter/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const plugin = require('../../../../src/plugins/screenshoter/index');
const plugin = require('../../../../src/protractor/plugins/screenshoter/index');

describe('Screenshoter Index', () => {
let sandbox;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/plugins/screenshoter/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs');
const mkdirp = require('mkdirp');
const Promise = require('bluebird');
const jimp = require('jimp');
const utils = require('../../../../src/plugins/screenshoter/utils');
const utils = require('../../../../src/protractor/plugins/screenshoter/utils');

describe('Screenshoter Utils', () => {
let sandbox;
Expand Down

0 comments on commit c4ccf66

Please sign in to comment.