summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml15
-rw-r--r--test.ts3
2 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..1a75f9cbd
--- /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 000000000..4e65e4c39
--- /dev/null
+++ b/test.ts
@@ -0,0 +1,3 @@
+import "./buffer_test.ts";
+import "./bufio_test.ts";
+// TODO import "./http_test.ts";