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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fbi-proxy",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "FBI-Proxy provides easy HTTPS access to your local services with intelligent domain routing",
5
5
  "keywords": [
6
6
  "development-tools",
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" })).toMatchObject({
110
+ expect(validateRoute({ ...good, match: "{port" })).toEqual({
111
111
  valid: false,
112
- reason: /unbalanced braces in `match`/,
112
+ reason: "unbalanced braces in `match`",
113
113
  });
114
114
  });
115
115