Removed deprecated helper function async

This commit is contained in:
Giuseppe Digilio
2021-01-07 20:12:15 +01:00
parent 4d4e920f0d
commit e5af894077
418 changed files with 2114 additions and 1912 deletions

View File

@@ -132,11 +132,13 @@ describe('ObjectGridComponent', () => {
comp.ngOnInit();
const expected = cold('c', { c: [
const expected = cold('c', {
c: [
[testObjects[0], testObjects[3], testObjects[6], testObjects[9]],
[testObjects[1], testObjects[4], testObjects[7]],
[testObjects[2], testObjects[5], testObjects[8]]
] });
]
});
const result = comp.columns$;
@@ -153,11 +155,13 @@ describe('ObjectGridComponent', () => {
comp.ngOnInit();
const expected = cold('c', { c: [
const expected = cold('c', {
c: [
[testObjects[0], testObjects[3], testObjects[6], testObjects[9]],
[testObjects[1], testObjects[4], testObjects[7]],
[testObjects[2], testObjects[5], testObjects[8]]
] });
]
});
const result = comp.columns$;
@@ -174,10 +178,12 @@ describe('ObjectGridComponent', () => {
comp.ngOnInit();
const expected = cold('c', { c: [
const expected = cold('c', {
c: [
[testObjects[0], testObjects[2], testObjects[4], testObjects[6], testObjects[8]],
[testObjects[1], testObjects[3], testObjects[5], testObjects[7], testObjects[9]],
] });
]
});
const result = comp.columns$;
@@ -194,10 +200,12 @@ describe('ObjectGridComponent', () => {
comp.ngOnInit();
const expected = cold('c', { c: [
const expected = cold('c', {
c: [
[testObjects[0], testObjects[2], testObjects[4], testObjects[6], testObjects[8]],
[testObjects[1], testObjects[3], testObjects[5], testObjects[7], testObjects[9]],
] });
]
});
const result = comp.columns$;
@@ -214,7 +222,7 @@ describe('ObjectGridComponent', () => {
comp.ngOnInit();
const expected = cold('c', { c: [ testObjects ] });
const expected = cold('c', { c: [testObjects] });
const result = comp.columns$;