mirror of
https://github.com/denoland/deno.git
synced 2025-09-30 14:11:14 +00:00
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
This commit is contained in:
parent
54d1f299dc
commit
b0b27c4310
23 changed files with 82 additions and 83 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue