- Updated pull request template
- Added issue template
- Updated to
pr-bumper
version3
- Updated to node 8
- Added slack integration
- Updated
ember-test-utils
to^8.1.1
- Updated
ember-test-utils
to^8.1.1
in blueprint - Updated
ember-cli-frost-blueprints
to^5.0.2
- Added
package-lock.json
file
- Add
chalk@^2.3.0
as dependency (was missed in #40)
- Updated travis CI configuration to remove testing since there are no tests to run
- Removed travis scripts that are no longer needed since we are not running test in CI
- Updated blueprints to install testing packages at the versions we desire
- Added
test-helper.js
blueprint file since we are no longer running theember-cli-mocha
blueprints that would have updated that file - Updated the addPackagesToProject method in the blueprints to respect the
save-exact
npm flag - Updated
README.md
to list all testing tools that this add-on installs via blueprints - Updated version of
ember-ajax
to^2.5.6
- Removed unused
ember-cli-release
package - Removed unused
ember-cli-sri
package - Removed unused
ember-sinon
package - Removed unused
ember-hook
package - Removed unused
ember-cli-mocha
package since no tests in this addon - Removed unused
ember-cli-chai
package since no tests in the addon - Added
NOTES.md
file explaining the behavior/reason for implementation of this addon - Updated version of
ember-test-utils
to^8.0.0
- Updated version of
ember-cli-htmlbars-inline-precompile
to0.3.12
- Updated to version 7 of
ember-test-utils
- Updated to version ^1.4.2 of
ember-hook
- Updated to version 4 of
ember-cli-frost-blueprints
- Removed unneeded
chai
devDependency - Added
bower
as a devDependency since it is no longer provide by Ember CLI - Updated to ignore line length linting of
CHANGELOG.md
- Updated the build scripts to publish under
ember-default
Listing changes that were not picked up from previous PR: #33 - Updated to Ember CLI 2.12.3 and Ember 2.12.x
- Updated ember-try config matrix with Ember LTS 2.8
- Updated travis.yml build matrix to run Ember LTS 2.8 and default (Ember LTS 2.12)
- Moved
ember-cli-frost-blueprints
fromdependencies
inpackage.json
to being installed as a blueprint. It turns out thatember-cli
cheats w.r.t.ember-cli-legacy-blueprints
and so we can't follow that pattern (of just making it annpm
dep).
- Removed blueprints for generating tests, they are now provided by
ember-cli-frost-blueprints
- Added
ember-cli-frost-blueprints
to thedependencies
so that the same blueprints are still available to consumers of this addon.
- Updated versions of ember-sinon, ember-hook, ember-test-utils and ember-mocha
- Updated test blueprints with new path to ember-test-util helpers
- Updated the secure auth tokens in
.travis.yml
- Updated to use latest pr-bumper which supports being able to set a PR to
none
when publishing a new version is not desired.
- Fixed bug in the new blueprint test generators (all but
component-test
were broken - Added automated tests for generating all files and making sure they pass lint
- Swapped from
bower
versions ofsinon-chai
andchai-jquery
tonpm
versions. Running the install blueprint for this addon will remove the bower deps, and add npm deps, as well as clean upember-cli-build.js
to undo what it previously added there. If you manually loadedsinon-chai
and/orchai-jquery
yourself inember-cli-build.js
you'll need to manually undo that.
- Updated
eslint-config-frost-standard
and fixed new lint warnings
- Removed the
blueprint
hack to install a fork oftestem
and clear out the one undernode_modules/ember-cli/node_modules/testem
since the fix has been released
- Updated the
README.md
with examples using the latestember-mocha
andember-test-utils
stuff - Added a section in the
README.md
about how to structuredescribe
,beforeEach
andit
blocks within tests. - Added
adapter-test
blueprint for generating adapter tests - Added
controller-test
blueprint for generating controller tests - Updated
component-test
blueprint to use new helpers fromember-test-utils
- Added
mixin-test
blueprint for generating mixin tests - Added
model-test
blueprint for generating model tests - Added
route-test
blueprint for generating route tests - Updated
ember-frost-test
blueprint to install a bugfix branch oftestem
and make sure it's used byember-cli
to workaround this bug until the fix is merged/released. - Fixed a bug in
component-test
where generating a test for an addon was usingaddon-name/tests/helpers
instead ofdummy/tests/helpers
to pull inember-test-utils
helpers.
- Added component-test blueprint generator
- Updated cleaned up CHANGELOG.md
- Added badges to README
- Added initial setup of
ember-frost-test
repo