Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Merge requests
!3
Resolve "login screen - project setup"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "login screen - project setup"
21-login-screen-project-setup
into
master
Overview
0
Commits
3
Pipelines
0
Changes
30
Merged
David Noah Donges
requested to merge
21-login-screen-project-setup
into
master
7 years ago
Overview
0
Commits
3
Pipelines
0
Changes
30
Expand
Closes
#21 (closed)
Proposed changes
Generated app via angular cli
Imported angular material and all of its dependencies
Created custom theme for angular material
0
0
Merge request reports
Compare
master
version 1
23e9870a
7 years ago
master (base)
and
latest version
latest version
88535ee4
3 commits,
7 years ago
version 1
23e9870a
3 commits,
7 years ago
30 files
+
13401
−
0
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
30
Search (e.g. *.vue) (Ctrl+P)
e2e/app.e2e-spec.ts
0 → 100644
+
14
−
0
Options
import
{
AppPage
}
from
'
./app.po
'
;
describe
(
'
arsnova-angular-frontend App
'
,
()
=>
{
let
page
:
AppPage
;
beforeEach
(()
=>
{
page
=
new
AppPage
();
});
it
(
'
should display welcome message
'
,
()
=>
{
page
.
navigateTo
();
expect
(
page
.
getParagraphText
()).
toEqual
(
'
Welcome to app!
'
);
});
});