-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Towards #22525 --------- Signed-off-by: Asher Gomez <[email protected]> Co-authored-by: Matt Mastracci <[email protected]>
- Loading branch information
Showing
17 changed files
with
50 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"check_subdomains": false, | ||
"ssl": { | ||
"type": "pregenerated", | ||
"pregenerated": { | ||
"ca_cert_path": "../../../tests/wpt/runner/certs/cacert.pem", | ||
"host_cert_path": "../../../tests/wpt/runner/certs/web-platform.test.pem", | ||
"host_key_path": "../../../tests/wpt/runner/certs/web-platform.test.key" | ||
} | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. | ||
import { delay, join, ROOT_PATH, TextLineStream, toFileUrl } from "../util.js"; | ||
import { | ||
delay, | ||
join, | ||
ROOT_PATH, | ||
TextLineStream, | ||
toFileUrl, | ||
} from "../../../tools/util.js"; | ||
import { assert, denoBinary, ManifestTestOptions, runPy } from "./utils.ts"; | ||
import { DOMParser } from "https://deno.land/x/[email protected]/deno-dom-wasm.ts"; | ||
|
||
|
@@ -11,7 +17,7 @@ export async function runWithTestUtil<T>( | |
"wpt", | ||
"serve", | ||
"--config", | ||
"../../../tools/wpt/config.json", | ||
"../../../tests/wpt/runner/config.json", | ||
], { | ||
stdout: verbose ? "inherit" : "piped", | ||
stderr: verbose ? "inherit" : "piped", | ||
|
@@ -123,7 +129,7 @@ export async function runSingleTest( | |
"--location", | ||
url.toString(), | ||
"--cert", | ||
join(ROOT_PATH, `./tools/wpt/certs/cacert.pem`), | ||
join(ROOT_PATH, `./tests/wpt/runner/certs/cacert.pem`), | ||
tempFile, | ||
"[]", | ||
); | ||
|
@@ -205,7 +211,7 @@ async function generateBundle(location: URL): Promise<string> { | |
const src = script.getAttribute("src"); | ||
if (src === "/resources/testharnessreport.js") { | ||
const url = toFileUrl( | ||
join(ROOT_PATH, "./tools/wpt/testharnessreport.js"), | ||
join(ROOT_PATH, "./tests/wpt/runner/testharnessreport.js"), | ||
); | ||
const contents = await Deno.readTextFile(url); | ||
scriptContents.push([url.href, contents]); | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.