ngx-tailwind-toastify
Version:
A customizable toast notifications library using Tailwind CSS.
17 lines (12 loc) • 440 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { NgxTailwindToastifyService } from './ngx-tailwind-toastify.service';
describe('NgxTailwindToastifyService', () => {
let service: NgxTailwindToastifyService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NgxTailwindToastifyService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});