-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding test case to reproduce "can not LoadManifestDataAsRawJson" reg…
…ression
- Loading branch information
Lucas Hinderberger
committed
Jun 5, 2024
1 parent
fcc1963
commit 8e366e8
Showing
3 changed files
with
25 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"http_server": { | ||
"addr": ":9999", | ||
"dir": "../_res", | ||
"testmode": false | ||
}, | ||
"name": "pathspec (@ notation) tests", | ||
"tests": [ | ||
"@sub/subtest_including.json" | ||
] | ||
} |
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,3 @@ | ||
[ | ||
"@../subtest_included.json" | ||
] |
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 @@ | ||
{ | ||
"name": "an arbitrary test", | ||
"request": { | ||
"server_url": "http://localhost:9999", | ||
"endpoint": "assets/empty.json", | ||
"method": "GET" | ||
}, | ||
"response": { | ||
"statuscode": 200 | ||
} | ||
} |