Skip to content

Commit

Permalink
adding failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Mar 26, 2019
1 parent 37b6e4b commit c781fc0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
5 changes: 5 additions & 0 deletions tests/unit/dependency-checker-package-manager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ describe('EmberCLIDependencyChecker', function() {
const project = createProject({ 'example-tar-gz': 'http://ember-cli.com/example-2.0.0.tar.gz' }, { root: 'tests/fixtures/project-'+ packageManagerName + '-tar-gz-check' });
assertNoPackageManagerError(project);
});

it('when the version specified is a url to a tar.gz and a _from is provided in the package.json with the package-name@ prefix and urls match', function() {
const project = createProject({ 'example-tar-gz': 'http://ember-cli.com/example-2.0.0.tar.gz' }, { root: 'tests/fixtures/project-'+ packageManagerName + '-tar-gz-at-check' });
assertNoPackageManagerError(project);
});
});

describe('sibling node_modules/ directory', function() {
Expand Down

0 comments on commit c781fc0

Please sign in to comment.