Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(core): base structure for @lucca/prisme library and split setup #3151

Draft
wants to merge 8 commits into
base: rc
Choose a base branch
from
Prev Previous commit
chore(prisme): fix test components build
  • Loading branch information
Supamiu committed Oct 23, 2024
commit 05a420d6f7b41f25e32aae7187063cf958584ad9
8 changes: 4 additions & 4 deletions packages/ng/button/button.spec.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { fakeAsync, TestBed } from '@angular/core/testing';
import { TestBed } from '@angular/core/testing';
import { ButtonComponent } from './public-api';

describe('ButtonComponent in LF', () => {
let button: ButtonComponent;

beforeEach(fakeAsync(() => {
TestBed.configureTestingModule({
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ButtonComponent],
}).compileComponents();
button = TestBed.createComponent(ButtonComponent).componentInstance;
}));
});

it('Should init properly', () => {
expect(button).not.toBeUndefined();
Expand Down
8 changes: 4 additions & 4 deletions packages/prisme/button/button.spec.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { fakeAsync, TestBed } from '@angular/core/testing';
import { TestBed } from '@angular/core/testing';
import { ButtonComponent } from './button.component';

describe('ButtonComponent', () => {
let button: ButtonComponent;

beforeEach(fakeAsync(() => {
TestBed.configureTestingModule({
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ButtonComponent],
}).compileComponents();
button = TestBed.createComponent(ButtonComponent).componentInstance;
}));
});

it('Should init properly', () => {
expect(button).not.toBeUndefined();
Expand Down