├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .watchmanconfig ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addon-test-support └── index.js ├── blueprints └── assertion │ ├── files │ └── tests │ │ └── assertions │ │ └── __name__.js │ └── index.js ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── package.json ├── test-support └── assertions.js ├── testem.js └── tests ├── assertions └── double-trouble.js ├── dummy ├── app │ ├── app.js │ ├── components │ │ └── .gitkeep │ ├── controllers │ │ └── .gitkeep │ ├── helpers │ │ └── .gitkeep │ ├── index.html │ ├── models │ │ └── .gitkeep │ ├── router.js │ ├── routes │ │ └── .gitkeep │ ├── styles │ │ └── app.css │ └── templates │ │ └── application.hbs ├── config │ ├── ember-cli-update.json │ ├── environment.js │ ├── optional-features.json │ └── targets.js └── public │ └── robots.txt ├── helpers └── .gitkeep ├── index.html ├── test-helper.js └── unit ├── .gitkeep ├── custom-assertion-in-old-api-test.js ├── custom-assertion-legacy-import-test.js └── custom-assertion.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/README.md -------------------------------------------------------------------------------- /addon-test-support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/addon-test-support/index.js -------------------------------------------------------------------------------- /blueprints/assertion/files/tests/assertions/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/blueprints/assertion/files/tests/assertions/__name__.js -------------------------------------------------------------------------------- /blueprints/assertion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/blueprints/assertion/index.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/package.json -------------------------------------------------------------------------------- /test-support/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/test-support/assertions.js -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/testem.js -------------------------------------------------------------------------------- /tests/assertions/double-trouble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/assertions/double-trouble.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/config/ember-cli-update.json -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/config/optional-features.json -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/custom-assertion-in-old-api-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/unit/custom-assertion-in-old-api-test.js -------------------------------------------------------------------------------- /tests/unit/custom-assertion-legacy-import-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/unit/custom-assertion-legacy-import-test.js -------------------------------------------------------------------------------- /tests/unit/custom-assertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockYard/ember-cli-custom-assertions/HEAD/tests/unit/custom-assertion.js --------------------------------------------------------------------------------