Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ describe('TemplateEditor component', () => {
props.editorReadOnly = false
})

it.skip('yaml editing/toolbar', async () => {
it('yaml editing/toolbar', async () => {
window.ResizeObserver = ResizeObserver
document.execCommand = () => {}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/Credentials/CredentialsForm.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('add credentials page', () => {
})

// Skipping AWS S3 credentials
it.skip('should create aws (Amazon Web Services) s3 credentials', async () => {
it('should create aws (Amazon Web Services) s3 credentials', async () => {
render(<Component credentialsType={Provider.awss3} />)
const providerConnection = createProviderConnection(
'awss3',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ describe('add automation template page', () => {
nockIgnoreOperatorCheck(true)
})

it.skip('should create a curator template', async () => {
it('should create a curator template', async () => {
render(<AddAnsibleTemplateTest />)

// template information
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/wizards/Governance/Policy/policyWizard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ describe('Policy wizard', () => {
expect(container.querySelector('#objectdefinition-spec-remediationaction-form-group')).toBeNull()
})

test.skip('single namespace mode of OperatorPolicy', async () => {
test('single namespace mode of OperatorPolicy', async () => {
const { container } = render(<TestPolicyWizardOperatorPolicy />)
screen.getByRole('button', { name: /policy templates/i }).click()

Expand Down Expand Up @@ -191,7 +191,7 @@ describe('Policy wizard', () => {
})
})

test.skip('all namespace mode of OperatorPolicy', async () => {
test('all namespace mode of OperatorPolicy', async () => {
const { container } = render(<TestPolicyWizardOperatorPolicy />)
screen.getByRole('button', { name: /policy templates/i }).click()

Expand Down