Skip to content

Commit 56d7547

Browse files
authored
fail test (#29)
1 parent 18edc18 commit 56d7547

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/pr_labeler.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ jobs:
2828
id: approvers
2929
run: echo ::set-output name=approvers::$(cat ./OWNERS | yq .approvers -M | grep ' ' | sed 's/[", -]//g')
3030

31+
- name: Add Size label
32+
if: github.event_name == 'pull_request_target'
33+
uses: 'pascalgn/[email protected]'
34+
env:
35+
GITHUB_TOKEN: '${{ secrets.BOT_PAT }}'
36+
3137
- name: Add WIP label / comment trigger
3238
if: |
3339
contains(github.event.pull_request.title, 'wip') ||

src/components/status/ConditionLabel/ConditionLabel.test.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ afterEach(cleanup);
99

1010
test('ConditionLabel', async () => {
1111
const { message, reason, status, type } = conditionsMock[0];
12-
// expect(true).toBe(false);
12+
expect(true).toBe(false);
13+
1314
const { asFragment, getByText } = render(
1415
<ConditionLabel message={message} reason={reason} status={status} type={type} />,
1516
);

0 commit comments

Comments
 (0)