refactor: rename Deno.TestDefinition.skip to ignore (#4400)

This commit is contained in:
Bartek Iwańczuk 2020-03-19 10:58:12 +01:00 committed by GitHub
parent 54d1f299dc
commit b0b27c4310
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 82 additions and 83 deletions

View file

@ -27,10 +27,10 @@ async function startServer(): Promise<Deno.Process> {
}
// TODO: https://github.com/denoland/deno/issues/4108
const skip = build.os == "win";
const ignore = build.os == "win";
test({
skip,
ignore,
name: "GET / should serve html",
async fn() {
const server = await startServer();
@ -49,7 +49,7 @@ test({
});
test({
skip,
ignore,
name: "GET /ws should upgrade conn to ws",
async fn() {
const server = await startServer();