mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
94233: fixed tests after CSSVariableService changes
This commit is contained in:
@@ -46,7 +46,7 @@ describe('CSSVariableService', () => {
|
||||
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', () => {
|
||||
const currentPage = 1;
|
||||
const pageSize = 5;
|
||||
|
@@ -1,10 +1,10 @@
|
||||
import { Observable, of as observableOf } from 'rxjs';
|
||||
|
||||
const variables = {
|
||||
smMin: '576px,',
|
||||
mdMin: '768px,',
|
||||
lgMin: '992px',
|
||||
xlMin: '1200px',
|
||||
'--bs-sm-min': '576px,',
|
||||
'--bs-md-min': '768px,',
|
||||
'--bs-lg-min': '992px',
|
||||
'--bs-xl-min': '1200px',
|
||||
} as any;
|
||||
|
||||
export class CSSVariableServiceStub {
|
||||
|
Reference in New Issue
Block a user