Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
work on #241: directive -> generators/directive
Browse files Browse the repository at this point in the history
  • Loading branch information
gruppjo committed Sep 3, 2015
1 parent 4485416 commit a6e1e6d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion directive/index.js → generators/directive/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
var yeoman = require('yeoman-generator');
var utils = require('../utils/utils.js');
var utils = require('../../utils/utils.js');

module.exports = yeoman.generators.NamedBase.extend({
initializing: function () {
Expand Down
4 changes: 2 additions & 2 deletions test/directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var config = require(path.join(__dirname, '../utils/config.js'));
describe('m:directive', function () {
describe('some', function () {
before(function (done) {
helpers.run(path.join(__dirname, '../directive'))
helpers.run(path.join(__dirname, '../generators/directive'))
.withArguments('some')
.on('end', done);
});
Expand All @@ -34,7 +34,7 @@ describe('m:directive', function () {

describe('someThing myModule', function () {
before(function (done) {
helpers.run(path.join(__dirname, '../directive'))
helpers.run(path.join(__dirname, '../generators/directive'))
.withArguments('someThing myModule')
.on('end', done);
});
Expand Down

0 comments on commit a6e1e6d

Please sign in to comment.