mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 13:44:41 +08:00
fc4b3b56d7
Summary: Fixes: T1334 remove final InboxApp references move out all underscore-plus methods Mass find and replace of underscore-plus sed -i '' -- 's/underscore-plus/underscore/g' **/*.coffee sed -i '' -- 's/underscore-plus/underscore/g' **/*.cjsx Test Plan: edgehill --test Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1534
12 lines
305 B
CoffeeScript
12 lines
305 B
CoffeeScript
{generateTempId} = require '../../src/flux/models/utils'
|
|
Message = require '../../src/flux/models/message'
|
|
Thread = require '../../src/flux/models/thread'
|
|
_ = require 'underscore'
|
|
|
|
mockThread =
|
|
namespaceId: "abc"
|
|
participants: ["zip@example.com"]
|
|
subject: "blah"
|
|
id: "asdf"
|
|
|
|
describe 'Thread', ->
|