eslintify all test files

This commit is contained in:
Scott Nonnenberg
2018-11-02 11:02:53 -07:00
parent 884bc9333d
commit dbf0be2db5
44 changed files with 1469 additions and 1484 deletions

View File

@@ -1,17 +1,15 @@
/* global assert: false */
/* global Whisper: false */
/* global assert, storage, Whisper */
'use strict';
describe('AttachmentView', () => {
var convo, message;
let convo;
before(async () => {
await clearDatabase();
convo = new Whisper.Conversation({ id: 'foo' });
message = convo.messageCollection.add({
convo.messageCollection.add({
conversationId: convo.id,
body: 'hello world',
type: 'outgoing',