-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the tests that conflicted during rebase.
- Loading branch information
1 parent
709bd65
commit c811e0a
Showing
2 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
packages/block-directory/src/components/downloadable-block-header/test/fixtures/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const pluginBase = { | ||
name: 'boxer/boxer', | ||
title: 'Boxer', | ||
description: | ||
'Boxer is a Block that puts your WordPress posts into boxes on a page.', | ||
id: 'boxer-block', | ||
rating: 5, | ||
rating_count: 1, | ||
active_installs: 0, | ||
author_block_rating: 5, | ||
author_block_count: '1', | ||
author: 'CK Lee', | ||
assets: [ | ||
'http://plugins.svn.wordpress.org/boxer-block/trunk/build/index.js', | ||
'http://plugins.svn.wordpress.org/boxer-block/trunk/build/view.js', | ||
], | ||
humanized_updated: '3 months ago', | ||
}; | ||
|
||
export const pluginWithIcon = { ...pluginBase, icon: 'block-default' }; | ||
export const pluginWithImg = { | ||
...pluginBase, | ||
icon: 'https://ps.w.org/listicles/assets/icon-128x128.png', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters