@joystick.js/node-canary 0.0.0-canary.50 → 0.0.0-canary.51

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/dist/app/index.js CHANGED
@@ -162,7 +162,10 @@ class App {
162
162
  initTests() {
163
163
  if (process.env.NODE_ENV === "test") {
164
164
  this.express.app.get("/api/_test/bootstrap", async (req, res) => {
165
- res.status(200).send({ ping: "pong" });
165
+ res.status(200).send({
166
+ ping: "pong",
167
+ query: req?.query
168
+ });
166
169
  });
167
170
  }
168
171
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/node-canary",
3
- "version": "0.0.0-canary.50",
3
+ "version": "0.0.0-canary.51",
4
4
  "type": "module",
5
5
  "description": "A Node.js framework for building web apps.",
6
6
  "main": "./dist/index.js",