Skip to content

Commit

Permalink
test: fix scripts with new deno version
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Jan 19, 2024
1 parent 68dd3c5 commit d2fbb94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM gitpod/workspace-full

RUN echo "force image rebuild: 123"

RUN curl -fsSL https://deno.land/x/install/install.sh | sh
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno
5 changes: 1 addition & 4 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"prepare": "deno run -A --no-lock npm:husky@^8 install",
"staged": "deno run -A --no-lock npm:lint-staged@^15",
"cache": "deno cache --lock=deno.lock --lock-write deps.ts dev_deps.ts",
"test": "deno lint && deno fmt --check && deno test -A --unstable",
"test": "deno lint && deno fmt --check && deno test -A --no-lock --unstable --ignore='*.integration.test.ts'",
"test:integration-native": "deno test -A --unstable adapter.native.integration.test.ts",
"test:suite": "deno test --allow-net --allow-env --no-check --no-lock --import-map=https://raw.githubusercontent.com/hyper63/hyper/hyper-test%40v2.1.4/packages/test/import_map.json https://raw.githubusercontent.com/hyper63/hyper/hyper-test%40v2.1.4/packages/test/mod.js",
"test:harness": "deno run --unstable --no-check --no-lock -A ./test/hyper.ts"
Expand All @@ -13,8 +13,5 @@
"lineWidth": 100,
"singleQuote": true,
"semiColons": false
},
"test": {
"exclude": ["*.integration.test.ts"]
}
}

0 comments on commit d2fbb94

Please sign in to comment.