Skip to content

Commit d4d53ee

Browse files
committed
Test that dynamodb is running using the /shell/ url instead of root which returns a bad request 400.
1 parent c097f41 commit d4d53ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/indexTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("Port function",function(){
1515
});
1616

1717
it("Port value should be >= 0 and < 65536",function(done){
18-
http.get(`http://localhost:${dataApp.prototype.port}`, function (response) {
18+
http.get(`http://localhost:${dataApp.prototype.port}/shell/`, function (response) {
1919
assert.equal(response.statusCode, 200);
2020
done();
2121
});

0 commit comments

Comments
 (0)