mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 05:53:03 +00:00
94233: fixed tests after CSSVariableService changes
This commit is contained in:
@@ -46,7 +46,7 @@ describe('CSSVariableService', () => {
|
|||||||
expect(service).toBeTruthy();
|
expect(service).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
fdescribe('searchVariable', () => {
|
describe('searchVariable', () => {
|
||||||
it('should return the right keys and variables in a paginated list for query that returns all 3 results', () => {
|
it('should return the right keys and variables in a paginated list for query that returns all 3 results', () => {
|
||||||
const currentPage = 1;
|
const currentPage = 1;
|
||||||
const pageSize = 5;
|
const pageSize = 5;
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
import { Observable, of as observableOf } from 'rxjs';
|
import { Observable, of as observableOf } from 'rxjs';
|
||||||
|
|
||||||
const variables = {
|
const variables = {
|
||||||
smMin: '576px,',
|
'--bs-sm-min': '576px,',
|
||||||
mdMin: '768px,',
|
'--bs-md-min': '768px,',
|
||||||
lgMin: '992px',
|
'--bs-lg-min': '992px',
|
||||||
xlMin: '1200px',
|
'--bs-xl-min': '1200px',
|
||||||
} as any;
|
} as any;
|
||||||
|
|
||||||
export class CSSVariableServiceStub {
|
export class CSSVariableServiceStub {
|
||||||
|
Reference in New Issue
Block a user