pull/1287/head
Audric Ackermann 5 years ago
parent 58dd064e93
commit 6cffb3c31f
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1791,7 +1791,7 @@
"message": "Connecting to server..."
},
"connectToServerSuccess": {
"message": "Successfully connected to open group"
"message": "Successfully connected to open group"
},
"setPasswordFail": {
"message": "Failed to set password"

@ -4,7 +4,7 @@
// tslint:disable: no-implicit-dependencies
// tslint:disable: no-invalid-this
import { after, before, it, describe} from 'mocha';
import { after, before, describe, it } from 'mocha';
import { Common } from './common';
import { Application } from 'spectron';

@ -26,7 +26,7 @@ export = {
`${num} members`
),
conversationItem: '//*[contains(@class, \'module-conversation-list-item\')]',
conversationItem: "//*[contains(@class, 'module-conversation-list-item')]",
attachmentInput: '//*[contains(@class, "choose-file")]/input[@type="file"]',
attachmentButton: '//*[contains(@class, "choose-file")]/button',

@ -36,7 +36,6 @@ async function makeFriendsPlusMessage(
app: Application,
[app2, pubkey]: [Application, string]
) {
await Common.makeFriends(app, [app2, pubkey]);
// Send something back so that `app` can see our name

@ -122,9 +122,7 @@ class StubAppDotNetAPI extends LokiAppDotNetServerAPI {
},
};
}
if (
endpoint === 'files'
) {
if (endpoint === 'files') {
return {
statusCode: 200,
response: {

Loading…
Cancel
Save