fbi-proxy 1.10.0 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/ts/routes.test.ts
CHANGED
|
@@ -107,9 +107,9 @@ describe("validateRoute", () => {
|
|
|
107
107
|
});
|
|
108
108
|
|
|
109
109
|
it("rejects unbalanced braces in match", () => {
|
|
110
|
-
expect(validateRoute({ ...good, match: "{port" })).
|
|
110
|
+
expect(validateRoute({ ...good, match: "{port" })).toEqual({
|
|
111
111
|
valid: false,
|
|
112
|
-
reason:
|
|
112
|
+
reason: "unbalanced braces in `match`",
|
|
113
113
|
});
|
|
114
114
|
});
|
|
115
115
|
|