Skip to content

Commit

Permalink
clean up debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
ekraffmiller committed Jul 8, 2024
1 parent de12bfb commit 1cf2dd5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ export function PublishDatasetModal({
)
const handleVersionUpdateTypeChange = (event: React.MouseEvent<HTMLInputElement>) => {
const target = event.target as HTMLInputElement
console.log('new value:', target.value)
setSelectedVersionUpdateType(target.value as VersionUpdateType)
}
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ describe('JS Dataset Mapper', () => {

expect(expectedDataset).to.deep.equal(mapped)
})
it.only('maps jsDataset model to the domain Dataset model for alternate version', () => {
it('maps jsDataset model to the domain Dataset model for alternate version', () => {
const mappedWithAlternate = JSDatasetMapper.toDataset(
jsDataset,
citation,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { DatasetPreviewMother } from '../../../../dataset/domain/models/DatasetP
describe('DatasetCardHeader', () => {
it('should render the header', () => {
const dataset = DatasetPreviewMother.create()
console.log(dataset)
cy.customMount(
<DatasetCardHeader persistentId={dataset.persistentId} version={dataset.version} />
)
Expand Down

0 comments on commit 1cf2dd5

Please sign in to comment.