Skip to content

Commit

Permalink
fixed redundant images folders
Browse files Browse the repository at this point in the history
loged in commit for CLA (+1 squashed commit)
Squashed commits:
[0f603e3] fixed redundant images folders

fixed path in bin/_mocha
  • Loading branch information
DavNej authored and boneskull committed May 17, 2018
1 parent 7397189 commit af88b58
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
File renamed without changes
File renamed without changes
14 changes: 7 additions & 7 deletions media/logo.svg → assets/media/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions bin/_mocha
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ const requires = [];
*/

const images = {
fail: path.join(__dirname, '..', 'images', 'error.png'),
pass: path.join(__dirname, '..', 'images', 'ok.png')
fail: path.join(__dirname, '..', 'assets/growl', 'error.png'),
pass: path.join(__dirname, '..', 'assets/growl', 'ok.png')
};

// options
Expand Down
2 changes: 1 addition & 1 deletion lib/mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ exports.Test = require('./test');
* @return {string}
*/
function image (name) {
return path.join(__dirname, '../images', name + '.png');
return path.join(__dirname, '../assests/growl', name + '.png');
}

/**
Expand Down

0 comments on commit af88b58

Please sign in to comment.