mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
Readded some more spaced for graph
This commit is contained in:
parent
c994adf22b
commit
d14ee88a2f
@ -247,8 +247,8 @@ describe('TypeaheadWidget', () => {
|
|||||||
|
|
||||||
it('should flush selected value', () => {
|
it('should flush selected value', () => {
|
||||||
let options: FormFieldOption[] = [
|
let options: FormFieldOption[] = [
|
||||||
{id: '1', name: 'Item one'},
|
{ id: '1', name: 'Item one' },
|
||||||
{id: '2', name: 'Item Two'}
|
{ id: '2', name: 'Item Two' }
|
||||||
];
|
];
|
||||||
|
|
||||||
widget.field.options = options;
|
widget.field.options = options;
|
||||||
@ -261,8 +261,8 @@ describe('TypeaheadWidget', () => {
|
|||||||
|
|
||||||
it('should be case insensitive when flushing value', () => {
|
it('should be case insensitive when flushing value', () => {
|
||||||
let options: FormFieldOption[] = [
|
let options: FormFieldOption[] = [
|
||||||
{id: '1', name: 'Item one'},
|
{ id: '1', name: 'Item one' },
|
||||||
{id: '2', name: 'iTEM TWo'}
|
{ id: '2', name: 'iTEM TWo' }
|
||||||
];
|
];
|
||||||
|
|
||||||
widget.field.options = options;
|
widget.field.options = options;
|
||||||
@ -275,8 +275,8 @@ describe('TypeaheadWidget', () => {
|
|||||||
|
|
||||||
it('should reset fields when flushing missing option value', () => {
|
it('should reset fields when flushing missing option value', () => {
|
||||||
widget.field.options = [
|
widget.field.options = [
|
||||||
{id: '1', name: 'Item one'},
|
{ id: '1', name: 'Item one' },
|
||||||
{id: '2', name: 'Item two'}
|
{ id: '2', name: 'Item two' }
|
||||||
];
|
];
|
||||||
widget.value = 'Missing item';
|
widget.value = 'Missing item';
|
||||||
widget.flushValue();
|
widget.flushValue();
|
||||||
@ -287,8 +287,8 @@ describe('TypeaheadWidget', () => {
|
|||||||
|
|
||||||
it('should reset fields when flushing incorrect value', () => {
|
it('should reset fields when flushing incorrect value', () => {
|
||||||
widget.field.options = [
|
widget.field.options = [
|
||||||
{id: '1', name: 'Item one'},
|
{ id: '1', name: 'Item one' },
|
||||||
{id: '2', name: 'Item two'}
|
{ id: '2', name: 'Item two' }
|
||||||
];
|
];
|
||||||
widget.field.value = 'Item two';
|
widget.field.value = 'Item two';
|
||||||
widget.value = 'Item two!';
|
widget.value = 'Item two!';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user