Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add End 2 End tests #477

Merged
merged 9 commits into from
Jul 18, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add e2e fixtures
  • Loading branch information
Stefan Buck committed Jul 4, 2018
commit b5afde36fd269a44ccad960b9a13fe8ad9c27562
2 changes: 2 additions & 0 deletions e2e/fixtures/javascript/nodejs/gentle-resonance-3436.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// @OctoLinkerResolve(<root>/javascript/nodejs/proud-tooth-7361.js)
require('./proud-tooth-7361');
11 changes: 11 additions & 0 deletions e2e/fixtures/javascript/nodejs/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// @OctoLinkerResolve(<root>/javascript/nodejs/gentle-resonance-3436.js)
require('./gentle-resonance-3436.js');

// @OctoLinkerResolve(<root>/javascript/nodejs/proud-tooth-7361.js)
require('./proud-tooth-7361');

// @OctoLinkerResolve(https://nodejs.org/api/fs.html)
require('fs');

// @OctoLinkerResolve(https://github.com/lodash/lodash)
require('lodash');
2 changes: 2 additions & 0 deletions e2e/fixtures/javascript/nodejs/proud-tooth-7361.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// @OctoLinkerResolve(<root>/javascript/nodejs/index.js)
require('.');
10 changes: 10 additions & 0 deletions e2e/fixtures/javascript/npm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"dependencies": {
"//": "@OctoLinkerResolve(https://github.com/lodash/lodash)",
"lodash": "^1.2.3"
},
"devDependencies": {
"//": "@OctoLinkerResolve(https://github.com/jashkenas/underscore)",
"underscore": "1.2.3"
}
}