Dark mode settings logic

This commit is contained in:
Michael Shamoon
2020-12-27 23:05:19 -08:00
parent 6a70369a77
commit 75c8cd9967
6 changed files with 98 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { AppViewService } from './app-view.service';
describe('AppViewService', () => {
let service: AppViewService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AppViewService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});