FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
angular-stackblitz/src/app/app.component.spec.ts at main · jprivet-dev/angular-stackblitz · GitHub
jprivet-dev
/
angular-stackblitz
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
angular-stackblitz
/
src
/
app
/
app.component.spec.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (31 loc) · 1.04 KB
Breadcrumbs
angular-stackblitz
/
src
/
app
/
app.component.spec.ts
Copy path
File metadata and controls
35 lines (31 loc) · 1.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import
{
TestBed
}
from
'@angular/core/testing'
;
import
{
RouterTestingModule
}
from
'@angular/router/testing'
;
import
{
AppComponent
}
from
'./app.component'
;
describe
(
'AppComponent'
,
(
)
=>
{
beforeEach
(
async
(
)
=>
{
await
TestBed
.
configureTestingModule
(
{
imports
:
[
RouterTestingModule
]
,
declarations
:
[
AppComponent
]
,
}
)
.
compileComponents
(
)
;
}
)
;
it
(
'should create the app'
,
(
)
=>
{
const
fixture
=
TestBed
.
createComponent
(
AppComponent
)
;
const
app
=
fixture
.
componentInstance
;
expect
(
app
)
.
toBeTruthy
(
)
;
}
)
;
it
(
`should have as title 'app'`
,
(
)
=>
{
const
fixture
=
TestBed
.
createComponent
(
AppComponent
)
;
const
app
=
fixture
.
componentInstance
;
expect
(
app
.
title
)
.
toEqual
(
'app'
)
;
}
)
;
it
(
'should render title'
,
(
)
=>
{
const
fixture
=
TestBed
.
createComponent
(
AppComponent
)
;
fixture
.
detectChanges
(
)
;
const
compiled
=
fixture
.
nativeElement
as
HTMLElement
;
expect
(
compiled
.
querySelector
(
'.content span'
)
?.
textContent
)
.
toContain
(
'app app is running!'
)
;
}
)
;
}
)
;
Back
|
FazBrowse Home
|
New Git URL