Save device token on middleware

This commit is contained in:
Eudes Inácio
2021-02-01 13:31:33 +01:00
parent 14cd929715
commit 6e8c55ab76
4 changed files with 82 additions and 13 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { NotificationsService } from './notifications.service';
describe('NotificationsService', () => {
let service: NotificationsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NotificationsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});