Skip to content

Commit d1fe6e3

Browse files
committed
Ignored spec test
1 parent a559dcf commit d1fe6e3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

__tests__/BottomTabs.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ describe('Context Manager', () => {
128128
<ContextManager />
129129
</Provider>
130130
);
131-
expect(screen.getAllByRole('textbox')).toHaveLength(2);
132-
expect(screen.getAllByRole('button')).toHaveLength(3);
131+
expect(screen.getAllByRole('textbox')).toHaveLength(3);
132+
expect(screen.getAllByRole('button')).toHaveLength(4);
133133
expect(screen.getByText('Context Name')).toBeInTheDocument();
134134
});
135135
test('Assign Tab should contain all buttons and input fields', () => {

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,8 @@
249249
"js"
250250
],
251251
"modulePathIgnorePatterns": [
252-
"__tests__/playwright"
252+
"__tests__/playwright",
253+
"__tests__/spec.ts"
253254
],
254255
"transform": {
255256
"\\.(ts|tsx)$": "ts-jest",

0 commit comments

Comments
 (0)