Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
MonireRasouli committed Nov 13, 2024
1 parent fcf856c commit bf2acfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/DocumentFilter/DocumentFilterFieldArray.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe('DocumentFilterFieldArray', () => {
});
});

test('multiple filters are separated by "OR"card heading shows the right labels', async () => {
test('multiple filters are separated by "OR" and card heading shows the right labels', async () => {
const { getByText, getByRole, queryAllByTestId } = renderComponent;
await Button('Add filter').exists();

Expand Down
8 changes: 4 additions & 4 deletions lib/DocumentFilter/DocumentFilterRule.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ describe('DocumentFilterRule', () => {
);
});

test('renders the submit button', async () => {
it('renders the submit button', async () => {
await Button('Submit').exists();
});

test('renders the correct options for the Attribute dropdown', async () => {
it('renders the correct options for the Attribute dropdown', async () => {
TextArea('Name').exists();
TextArea('Note').exists();
TextArea('Category').exists();
Expand All @@ -64,7 +64,7 @@ describe('DocumentFilterRule', () => {
TextArea('File name').exists();
});

test('renders the correct options for the Comparator dropdown', async () => {
it('renders the correct options for the Comparator dropdown', async () => {
TextArea('is').exists();
TextArea('containes').exists();
TextArea('does not contain').exists();
Expand Down Expand Up @@ -97,7 +97,7 @@ describe('DocumentFilterRule', () => {
);
});

test('renders the submit button', async () => {
it('renders the submit button', async () => {
await Button('Submit').exists();
});

Expand Down

0 comments on commit bf2acfe

Please sign in to comment.