Skip to content

Commit

Permalink
updated package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyUB committed Feb 18, 2025
1 parent 6892d3b commit 1030c46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tybotRoute/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tybotRoute/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiledesk/tiledesk-tybot-connector",
"version": "0.2.153-rc1",
"version": "0.2.153-rc2",
"description": "Tiledesk Tybot connector",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions tybotRoute/test/conversation-askgptv2_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1743,7 +1743,6 @@ describe('Conversation for AskGPTV2 test', async () => {
endpointServer.post('/:projectId/requests/:requestId/messages', function (req, res) {
res.send({ success: true });
const message = req.body;
console.log("message: ", JSON.stringify(message, null, 2))
assert(message.attributes.commands !== null);
assert(message.attributes.commands.length === 2);
const command2 = message.attributes.commands[1];
Expand Down Expand Up @@ -1855,7 +1854,6 @@ describe('Conversation for AskGPTV2 test', async () => {
endpointServer.post('/:projectId/requests/:requestId/messages', function (req, res) {
res.send({ success: true });
const message = req.body;
console.log("message: ", JSON.stringify(message, null, 2))
assert(message.attributes.commands !== null);
assert(message.attributes.commands.length === 2);
const command2 = message.attributes.commands[1];
Expand Down

0 comments on commit 1030c46

Please sign in to comment.