Fix: player_list.php reivsed

This commit is contained in:
2019-07-11 10:45:27 +09:00
parent 251fc5adce
commit 4f02030c46
4 changed files with 56 additions and 154 deletions
+3 -1
View File
@@ -2,6 +2,8 @@
// DBConnector
QUnit.test( "DBConnector", function( assert ) {
var maestroID = "choco";
var playerID = "jisangs";
var xhr = new XMLHttpRequest();
xhr.open("POST", "./../src/web/php/writing/player_list.php", true);
@@ -12,7 +14,7 @@ QUnit.test( "DBConnector", function( assert ) {
console.log(replyJSON);
}
};
xhr.send();
xhr.send("maestroID=" + maestroID + "&playerID=" + playerID);
assert.equal(1, 0, "DBConnector");
});