1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 23:59:59 -05:00
Original: 93e5e0cd14
This commit is contained in:
Ryan Dahl 2019-03-01 02:54:21 -05:00 committed by GitHub
parent 2ba7de2d04
commit 2db147a001
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
variables:
DENO_VERSION: 'v0.3.0'
DENO_VERSION: 'v0.3.1'
jobs:

View file

@ -293,7 +293,7 @@ export async function runTests() {
}
export async function runIfMain(meta: ImportMeta) {
if (window.location.toString() === meta.url) {
if (meta.main) {
runTests();
}
}