Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Jul 16, 2024
1 parent e8eec7d commit af59e88
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 80 deletions.
11 changes: 11 additions & 0 deletions apps/design-land/src/app/foundations/color/color.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import {
ComponentFixture,
TestBed,
} from '@angular/core/testing';
import { of } from 'rxjs';

import { DaffDocsAssetService } from '@daffodil/documentation';

import { DesignLandColorComponent } from './color.component';

Expand All @@ -15,6 +18,14 @@ describe('DesignLandColorComponent', () => {
declarations: [
DesignLandColorComponent,
],
providers: [
{
provide: DaffDocsAssetService,
useValue: jasmine.createSpyObj('DaffDocsAssetService', {
get: of(),
}),
},
],
})
.compileComponents();
}));
Expand Down

This file was deleted.

0 comments on commit af59e88

Please sign in to comment.