94233: fixed tests after CSSVariableService changes

This commit is contained in:
lotte
2022-09-16 16:23:11 +02:00
parent 89ba24fc1c
commit ce67003f26
2 changed files with 5 additions and 5 deletions

View File

@@ -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;

View File

@@ -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 {