From 2db147a0018b591c5039acf2b75706d960b1dec3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 1 Mar 2019 02:54:21 -0500 Subject: [PATCH] Bump CI to v0.3.1 (denoland/deno_std#220) Original: https://github.com/denoland/deno_std/commit/93e5e0cd143d329f9f8d22fe8ea2b7387c251ff4 --- azure-pipelines.yml | 2 +- testing/mod.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b9989d34d9..2d6f318a4c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,5 +1,5 @@ variables: - DENO_VERSION: 'v0.3.0' + DENO_VERSION: 'v0.3.1' jobs: diff --git a/testing/mod.ts b/testing/mod.ts index 3b895a2e98..0a6e528052 100644 --- a/testing/mod.ts +++ b/testing/mod.ts @@ -293,7 +293,7 @@ export async function runTests() { } export async function runIfMain(meta: ImportMeta) { - if (window.location.toString() === meta.url) { + if (meta.main) { runTests(); } }