Skip to content

Commit 8bdf540

Browse files
committed
Fixed integration test
1 parent c62cf64 commit 8bdf540

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/integration/qrCodeAuth.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ describe("QrCodeAuth", function () {
178178
});
179179

180180
it("should successfully fetch the user device info", function (done) {
181-
qrCodeAuthModel.storeUserDeviceInfo(userDeviceInfoData);
181+
qrCodeAuthModel.storeUserDeviceInfo(userDeviceInfoData).then((res) => console.log(res));
182+
182183
chai
183184
.request(app)
184185
.get(`/auth/qr-code-auth?device_id=${userDeviceInfoData.device_id}`)

0 commit comments

Comments
 (0)