Skip to content

Commit

Permalink
Trivial commit to trigger workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuriravindramohan-okta committed Sep 22, 2023
1 parent 88697d9 commit 6f0a8b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ app.get('/hello', (req, res) => {
});

app.get('/bye', (req, res) => {
res.send('See you soon!');
res.send('See you again!');
});


Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "legendary-tribble",
"version": "1.0.2",
"version": "1.0.3",
"description": "A basic npm library",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/testingtest.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('Testing get endpoint', () => {
.get('/bye')
.expect(200)
.end(function (err, res) {
res.text.should.eql('See you soon!');
res.text.should.eql('See you again!');
done();
});
})
Expand Down

0 comments on commit 6f0a8b3

Please sign in to comment.