mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 14:33:03 +00:00
Merge branch 'main' into regex-error-messages
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { FormFieldModel } from '../models/form-field.model';
|
||||
import { DynamicConcatModel } from '../ds-dynamic-form-ui/models/ds-dynamic-concat.model';
|
||||
import { SeriesFieldParser } from './series-field-parser';
|
||||
import { FormFieldModel } from '../models/form-field.model';
|
||||
import { FormFieldMetadataValueObject } from '../models/form-field-metadata-value.model';
|
||||
import { ParserOptions } from './parser-options';
|
||||
import { getMockTranslateService } from 'src/app/shared/mocks/translate.service.mock';
|
||||
import { SeriesFieldParser } from './series-field-parser';
|
||||
|
||||
describe('SeriesFieldParser test suite', () => {
|
||||
let field: FormFieldModel;
|
||||
@@ -15,7 +15,7 @@ describe('SeriesFieldParser test suite', () => {
|
||||
readOnly: false,
|
||||
submissionScope: 'testScopeUUID',
|
||||
collectionUUID: null,
|
||||
typeField: 'dc_type'
|
||||
typeField: 'dc_type',
|
||||
};
|
||||
|
||||
beforeEach(() => {
|
||||
@@ -28,9 +28,9 @@ describe('SeriesFieldParser test suite', () => {
|
||||
selectableMetadata: [
|
||||
{
|
||||
metadata: 'series',
|
||||
}
|
||||
},
|
||||
],
|
||||
languageCodes: []
|
||||
languageCodes: [],
|
||||
} as FormFieldModel;
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user