Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Apr 15, 2024
1 parent 84a9fa3 commit 9d70e9d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/modules/printer/printer-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { PrinterPage } from './printer.page';
const routes: Routes = [
{
path: '',
component: PrinterPage
}
component: PrinterPage,
},
];

@NgModule({
Expand Down
11 changes: 9 additions & 2 deletions src/app/modules/printer/printer.page.spec.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';

import { PrinterPage } from './printer.page';

describe('PrinterPage', () => {
let component: PrinterPage;
let fixture: ComponentFixture<PrinterPage>;

beforeEach(waitForAsync () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [PrinterPage],
imports: [IonicModule.forRoot()],
}).compileComponents();

fixture = TestBed.createComponent(PrinterPage);
component = fixture.componentInstance;
fixture.detectChanges();
});
}));

it('should create', () => {
expect(component).toBeTruthy();
Expand Down

0 comments on commit 9d70e9d

Please sign in to comment.