Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
1945890f
...
1945890f5a64d7f262af28019dcfc09c6e748467
authored
2013-09-13 10:50:32 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
added missing files - refs #624
1 parent
2378537a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
0 deletions
.gitignore
tests/clitests/modules/node_modules/baz/baz.js
tests/clitests/modules/node_modules/baz/package.json
tests/clitests/modules/test_node_mod_json_package.js
.gitignore
View file @
1945890
...
...
@@ -5,3 +5,4 @@
/docs/*.xml
/docs/_build
/tmp
*.pyc
...
...
tests/clitests/modules/node_modules/baz/baz.js
0 → 100644
View file @
1945890
module
.
exports
=
42
;
tests/clitests/modules/node_modules/baz/package.json
0 → 100644
View file @
1945890
{
"main"
:
"baz.js"
}
tests/clitests/modules/test_node_mod_json_package.js
0 → 100644
View file @
1945890
var
casper
=
require
(
'casper'
).
create
();
var
baz
=
require
(
'baz'
);
console
.
log
(
baz
);
casper
.
exit
();
Please
register
or
sign in
to post a comment