export const title = 'My RSS feed'; export const description = 'This sure is a nice RSS feed'; export const site = 'https://example.com'; export const phpFeedItem = { link: '/php', title: 'Remember PHP?', pubDate: '1994-05-03', description: 'PHP is a general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1994.', }; export const phpFeedItemWithContent = { ...phpFeedItem, content: `

${phpFeedItem.title}

${phpFeedItem.description}

`, }; export const phpFeedItemWithCustomData = { ...phpFeedItem, customData: '', }; export const web1FeedItem = { // Should support empty string as a URL (possible for homepage route) link: '', title: 'Web 1.0', pubDate: '1997-05-03', description: 'Web 1.0 is the term used for the earliest version of the Internet as it emerged from its origins with Defense Advanced Research Projects Agency (DARPA) and became, for the first time, a global network representing the future of digital communications.', }; export const web1FeedItemWithContent = { ...web1FeedItem, content: `

${web1FeedItem.title}

${web1FeedItem.description}

`, }; export const web1FeedItemWithAllData = { ...web1FeedItem, categories: ['web1', 'history'], author: 'test@example.com', commentsUrl: 'http://example.com/comments', source: { url: 'http://example.com/source', title: 'The Web 1.0 blog', }, enclosure: { url: '/podcast.mp3', length: 256, type: 'audio/mpeg', }, }; nect-tests'>ciro/proxy-connect-tests Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/process.test.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-04-03wipGravatar Jarred Sumner 120-20/+8988
2022-04-03[bun.js] Expose `ImageData` globallyGravatar Jarred Sumner 12-2/+1237
2022-04-02More typesGravatar Jarred Sumner 2-39/+3998
2022-04-02Add more typingsGravatar Jarred Sumner 1-2/+416
2022-04-02Add more tests for Node FSGravatar Jarred Sumner 4-1/+60
2022-04-02[bun.js] fs.readSync & fs.writeSync should return just the numberGravatar Jarred Sumner 1-24/+57
2022-04-02[bun.js] Support `mode` and `flags` as integer args in fs.openSync (instead o...Gravatar Jarred Sumner 1-0/+6
2022-04-02Update base.zigGravatar Jarred Sumner 1-0/+1
2022-04-02Fix GC bug when reading TypedArray from user inputGravatar Jarred Sumner 1-6/+36
2022-04-02s/Buffer/TypedArrayGravatar Jarred Sumner 1-17/+17
2022-04-02Fix mmap on macOS x64Gravatar Jarred Sumner 2-29/+27