Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Bit Pull Request
uses: bit-tasks/pull-request@main
with:
build: true
version-labels: true
# version-labels-color-major: 'C2E0C6'
# version-labels-color-minor: 'C2E0C6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import { BasicGetMessage } from './get-message.composition.js';

it('should render the correct text', () => {
const { getByText } = render(<BasicGetMessage />);
const rendered = getByText('hello world!');
const rendered = getByText('hello world!!');
expect(rendered).toBeTruthy();
});
2 changes: 1 addition & 1 deletion test-data/ci-scripts-tests/get-message/get-message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type GetMessageProps = {
export function GetMessage({ children }: GetMessageProps) {
return (
<div>
{children}!!
{children}!
</div>
);
}