Skip to content

Commit

Permalink
Using absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Jun 15, 2024
1 parent af0d9d7 commit e34c87c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/contador/contador.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ComponentFixture, TestBed } from '@angular/core/testing'

import { ContadorComponent } from './contador.component'
import { getByTestId } from '../test-utils'
import { getByTestId } from 'app/test-utils'

describe('ContadorComponent', () => {
let component: ContadorComponent
Expand Down
2 changes: 1 addition & 1 deletion src/app/producto/producto.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ComponentFixture, TestBed } from '@angular/core/testing'

import { ProductoComponent } from './producto.component'
import { getByTestId } from '../test-utils'
import { getByTestId } from 'app/test-utils'
import { Producto } from './producto.domain'

describe('ProductoComponent', () => {
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
Expand Down

0 comments on commit e34c87c

Please sign in to comment.