Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
76cb8163
Commit
76cb8163
authored
Apr 10, 2017
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add default unit tests
parent
9cc57b90
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
175 additions
and
0 deletions
+175
-0
create.component.spec.ts
Breeze.UI/src/app/setup/create/create.component.spec.ts
+25
-0
history.component.spec.ts
Breeze.UI/src/app/wallet/history/history.component.spec.ts
+25
-0
dashboard.component.spec.ts
Breeze.UI/src/app/wallet/menu/dashboard.component.spec.ts
+25
-0
menu.component.spec.ts
Breeze.UI/src/app/wallet/menu/menu.component.spec.ts
+25
-0
receive.component.spec.ts
Breeze.UI/src/app/wallet/receive/receive.component.spec.ts
+25
-0
send.component.spec.ts
Breeze.UI/src/app/wallet/send/send.component.spec.ts
+25
-0
wallet.component.spec.ts
Breeze.UI/src/app/wallet/wallet.component.spec.ts
+25
-0
No files found.
Breeze.UI/src/app/setup/create/create.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
CreateComponent
}
from
'./create.component'
;
describe
(
'CreateComponent'
,
()
=>
{
let
component
:
CreateComponent
;
let
fixture
:
ComponentFixture
<
CreateComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
CreateComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
CreateComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/history/history.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
HistoryComponent
}
from
'./history.component'
;
describe
(
'HistoryComponent'
,
()
=>
{
let
component
:
HistoryComponent
;
let
fixture
:
ComponentFixture
<
HistoryComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
HistoryComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
HistoryComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/menu/dashboard.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
DashboardComponent
}
from
'./dashboard.component'
;
describe
(
'DashboardComponent'
,
()
=>
{
let
component
:
DashboardComponent
;
let
fixture
:
ComponentFixture
<
DashboardComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
DashboardComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
DashboardComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/menu/menu.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
MenuComponent
}
from
'./menu.component'
;
describe
(
'MenuComponent'
,
()
=>
{
let
component
:
MenuComponent
;
let
fixture
:
ComponentFixture
<
MenuComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
MenuComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
MenuComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/receive/receive.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
ReceiveComponent
}
from
'./receive.component'
;
describe
(
'ReceiveComponent'
,
()
=>
{
let
component
:
ReceiveComponent
;
let
fixture
:
ComponentFixture
<
ReceiveComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
ReceiveComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
ReceiveComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/send/send.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
SendComponent
}
from
'./send.component'
;
describe
(
'SendComponent'
,
()
=>
{
let
component
:
SendComponent
;
let
fixture
:
ComponentFixture
<
SendComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
SendComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
SendComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/wallet.component.spec.ts
0 → 100644
View file @
76cb8163
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
WalletComponent
}
from
'./wallet.component'
;
describe
(
'WalletComponent'
,
()
=>
{
let
component
:
WalletComponent
;
let
fixture
:
ComponentFixture
<
WalletComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
WalletComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
WalletComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment