Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProjectAng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fatima NID-BAHDOU
ProjectAng
Merge requests
!1
first commit
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
first commit
master
into
main
Overview
0
Commits
2
Pipelines
0
Changes
35
Merged
first commit
Fatima NID-BAHDOU
requested to merge
master
into
main
Oct 21, 2021
Overview
0
Commits
2
Pipelines
0
Changes
35
0
0
Merge request reports
Compare
main
version 1
80dbe207
Oct 21, 2021
main (base)
and
latest version
latest version
15d60210
2 commits,
Oct 21, 2021
version 1
80dbe207
1 commit,
Oct 21, 2021
35 files
+
14563
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
35
e2e/src/app.e2e-spec.ts
0 → 100644
+
23
−
0
View file @ 15d60210
Edit in single-file editor
Open in Web IDE
import
{
AppPage
}
from
'
./app.po
'
;
import
{
browser
,
logging
}
from
'
protractor
'
;
describe
(
'
workspace-project App
'
,
()
=>
{
let
page
:
AppPage
;
beforeEach
(()
=>
{
page
=
new
AppPage
();
});
it
(
'
should display welcome message
'
,
async
()
=>
{
await
page
.
navigateTo
();
expect
(
await
page
.
getTitleText
()).
toEqual
(
'
FrontendAangular app is running!
'
);
});
afterEach
(
async
()
=>
{
// Assert that there are no errors emitted from the browser
const
logs
=
await
browser
.
manage
().
logs
().
get
(
logging
.
Type
.
BROWSER
);
expect
(
logs
).
not
.
toContain
(
jasmine
.
objectContaining
({
level
:
logging
.
Level
.
SEVERE
,
}
as
logging
.
Entry
));
});
});
Loading