ngx-tailwind-toastify
Version:
A customizable toast notifications library using Tailwind CSS.
24 lines (18 loc) • 708 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NgxTailwindToastifyComponent } from './ngx-tailwind-toastify.component';
describe('NgxTailwindToastifyComponent', () => {
let component: NgxTailwindToastifyComponent;
let fixture: ComponentFixture<NgxTailwindToastifyComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [NgxTailwindToastifyComponent]
})
.compileComponents();
fixture = TestBed.createComponent(NgxTailwindToastifyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});