pinafore/tests/fixtures.js

88 lines
2.6 KiB
JavaScript
Raw Permalink Normal View History

2018-04-19 05:43:13 +02:00
import { times } from './utils'
2018-02-20 02:04:37 +01:00
export const homeTimeline = [
{ content: 'pinned toot 1' },
{ content: 'notification of unlisted message' },
{ content: 'notification of followers-only message' },
{ content: 'this is unlisted' },
{ content: 'this is followers-only' },
{ spoiler: 'kitten CW' },
{ content: 'secret video' },
{ content: "here's a video" },
{ spoiler: 'CW' },
{ content: "here's a secret animated kitten gif" },
{ content: "here's an animated kitten gif" },
{ content: "here's 2 kitten photos" },
{ content: "here's a secret kitten" },
{ content: "here's a kitten" },
{ content: 'hello admin' },
{ content: 'hello foobar' },
{ content: 'hello world' }
].concat(times(30, i => ({ content: (30 - i).toString() })))
2018-02-20 02:04:37 +01:00
export const localTimeline = [
{ spoiler: 'kitten CW' },
{ content: 'secret video' },
{ content: "here's a video" },
{ spoiler: 'CW' },
{ content: "here's a secret animated kitten gif" },
{ content: "here's an animated kitten gif" },
{ content: "here's 2 kitten photos" },
{ content: "here's a secret kitten" },
{ content: "here's a kitten" },
{ content: 'hello world' }
].concat(times(30, i => ({ content: (30 - i).toString() })))
2018-02-20 02:04:37 +01:00
export const notifications = [
{ favoritedBy: 'admin' },
{ rebloggedBy: 'admin' },
{ content: 'notification of unlisted message' },
{ content: 'notification of followers-only message' },
{ content: 'notification of direct message' },
{ followedBy: 'quux' },
{ content: 'hello foobar' },
{ followedBy: 'admin' }
2018-02-20 02:04:37 +01:00
]
export const favorites = [
{ content: 'notification of direct message' },
{ content: 'notification of followers-only message' },
{ content: 'notification of unlisted message' },
{ content: 'pinned toot 1' }
2018-02-20 03:25:59 +01:00
]
2018-02-20 17:50:48 +01:00
export const quuxStatuses = [
{ content: 'pinned toot 2' },
{ content: 'pinned toot 1' }
].concat(times(25, i => ({ content: `unlisted thread ${25 - i}` })))
2018-02-21 06:08:26 +01:00
export const quuxThread = times(25, i => ({ content: `unlisted thread ${i + 1}` }))
2018-03-09 03:08:14 +01:00
export const bazThreadRelativeTo2B2 = [
{ content: 'thread 1' },
{ content: 'thread 2' },
{ content: 'thread 2b' },
{ content: 'thread 2b2' },
{ content: 'thread 2b2a' }
2018-03-09 03:08:14 +01:00
]
export const bazThreadRelativeTo2b = [
{ content: 'thread 1' },
{ content: 'thread 2' },
{ content: 'thread 2b' },
{ content: 'thread 2b1' },
{ content: 'thread 2b2' },
{ content: 'thread 2b2a' }
2018-03-09 03:08:14 +01:00
]
export const bazThreadRelativeTo2 = [
{ content: 'thread 1' },
{ content: 'thread 2' },
{ content: 'thread 2a' },
{ content: 'thread 2b' },
{ content: 'thread 2b1' },
{ content: 'thread 2b2' },
{ content: 'thread 2b2a' },
{ content: 'thread 2c' }
2018-03-09 03:09:35 +01:00
]