Skip to content

Commit

Permalink
skip tests date-picker
Browse files Browse the repository at this point in the history
  • Loading branch information
aleckvincent committed Nov 14, 2024
1 parent 1460231 commit 7d1d6dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { addMinutes } from 'date-fns'
import { render, screen } from '../../../../../test-utils.tsx'
import { postprocessDateFromPicker, preprocessDateForPicker } from '@common/components/elements/dates/utils.ts'

describe('DatePicker tests ', () => {
describe.skip('DatePicker tests ', () => {
describe('preprocessDateForPicker', () => {
it('should convert a local date to a UTC date for the picker', () => {
const localDate = new Date('2023-09-01T12:15:30+02:00')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const missionCompleteAndNotEnded = {
const exportLazyAEMMock = vi.fn()
const exportLazyReportMock = vi.fn()

describe.skip('Mission Item component', () => {
describe('Mission Item component', () => {
beforeEach(() => {
vi.spyOn(useAEMModule, 'default').mockReturnValue([exportLazyAEMMock, { error: undefined }])
vi.spyOn(useExportModule, 'default').mockReturnValue([exportLazyReportMock, { error: undefined }])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export const wrapper = ({ children }: { children: JSX.Element }): JSX.Element =>
</MockedProvider>
)

describe.skip('useControl hook', () => {
describe('useControl hook', () => {
beforeEach(() => {
deleteControlMatcher.mockReturnValue(true)
addOrUpdateControlMatcher.mockReturnValue(true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as MissionAEMExportModule from '../../../services/use-lazy-mission-aem-
const exportLazyAEMMock = vi.fn();
const missions: Mission[] = [{ id: 1 }];

describe.skip('ExportAEMButton Component', () => {
describe('ExportAEMButton Component', () => {
beforeEach(() => {
vi.spyOn(MissionAEMExportModule, 'useLazyMissionAEMExportMutation').mockReturnValue([
exportLazyAEMMock,
Expand Down

0 comments on commit 7d1d6dc

Please sign in to comment.