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();
});
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;

View File

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