2025-01-13 23:34:10 +00:00
|
|
|
import { TestBed } from '@angular/core/testing';
|
|
|
|
|
2025-01-17 05:00:48 +00:00
|
|
|
import TwitchRedemptionService from './twitch-redemption.service';
|
2025-01-13 23:34:10 +00:00
|
|
|
|
|
|
|
describe('TwitchRedemptionService', () => {
|
|
|
|
let service: TwitchRedemptionService;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({});
|
|
|
|
service = TestBed.inject(TwitchRedemptionService);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be created', () => {
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|