initial testbed

This commit is contained in:
Anton Dyudin 2017-11-30 19:47:31 -08:00
parent ecafc30064
commit 469fe037e3
4 changed files with 18 additions and 0 deletions

2
.travis.yml Normal file
View File

@ -0,0 +1,2 @@
language: node_js # ish, mainly used as an entry point
before_install: cd .travis # keep main directory clear

1
.travis/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/

14
.travis/package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "arvo-tests",
"version": "1.0.0",
"description": "Test harness for Urbit arvo distribution",
"main": "test.ls",
"scripts": {
"test": "lsc test.ls"
},
"author": "~fyr",
"license": "MIT",
"dependencies": {
"livescript": "^1.5.0"
}
}

1
.travis/test.ls Normal file
View File

@ -0,0 +1 @@
console.log "yo"