diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..1a75f9cbde --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python + +os: + - linux + +python: + - "2.7" + +install: +- |- + curl -sSf https://raw.githubusercontent.com/denoland/deno_install/master/install.py | python + export PATH="$HOME/.deno/bin:$PATH" + +script: + - deno test.ts diff --git a/test.ts b/test.ts new file mode 100644 index 0000000000..4e65e4c391 --- /dev/null +++ b/test.ts @@ -0,0 +1,3 @@ +import "./buffer_test.ts"; +import "./bufio_test.ts"; +// TODO import "./http_test.ts";