diff --git a/blueprints/helper-test/index.js b/blueprints/helper-test/index.js index bc6c91a8a25..5809351b6ef 100644 --- a/blueprints/helper-test/index.js +++ b/blueprints/helper-test/index.js @@ -31,7 +31,7 @@ module.exports = useTestFrameworkDetector({ }, locals: function(options) { - var testType = options.testType || 'unit'; + var testType = options.testType || 'integration'; var testName = testType === 'integration' ? 'Integration' : 'Unit'; var friendlyTestName = testInfo.name(options.entity.name, testName, 'Helper'); diff --git a/node-tests/blueprints/helper-test.js b/node-tests/blueprints/helper-test.js index 491299a881c..727baede0d2 100644 --- a/node-tests/blueprints/helper-test.js +++ b/node-tests/blueprints/helper-test.js @@ -27,7 +27,7 @@ describe('Acceptance: ember generate and destroy helper', function() { "}\n\n" + "export default Ember.Helper.helper(fooBarBaz);"); - expect(_file('tests/unit/helpers/foo/bar-baz-test.js')) + expect(_file('tests/integration/helpers/foo/bar-baz-test.js')) .to.contain("import { fooBarBaz } from 'my-app/helpers/foo/bar-baz';"); })); });