First development of the deploy action (#6)
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Deploy js code to an instance of screeps. Some debugging tools are implemented. Reviewed-on: #6 Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
This commit is contained in:
19
node_modules/github-from-package/test/url.js
generated
vendored
Normal file
19
node_modules/github-from-package/test/url.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
var test = require('tape');
|
||||
var github = require('../');
|
||||
var packages = {
|
||||
a : require('./a.json'),
|
||||
b : require('./b.json'),
|
||||
c : require('./c.json'),
|
||||
d : require('./d.json'),
|
||||
e : require('./e.json')
|
||||
};
|
||||
|
||||
test(function (t) {
|
||||
t.plan(5);
|
||||
var url = 'https://github.com/substack/beep-boop';
|
||||
t.equal(url, github(packages.a), 'a.json comparison');
|
||||
t.equal(url, github(packages.b), 'b.json comparison');
|
||||
t.equal(url, github(packages.c), 'c.json comparison');
|
||||
t.equal(url, github(packages.d), 'd.json comparison');
|
||||
t.equal(url, github(packages.e), 'e.json comparison');
|
||||
});
|
Reference in New Issue
Block a user