Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ghsc
Hazards Development Team
earthquake-geoserve-ui
Commits
65e978ec
Commit
65e978ec
authored
Sep 26, 2019
by
Brown, Jonathan D.
Committed by
Edward J Hunter
Oct 15, 2021
Browse files
fixed "it" statement
parent
5c8e9e9a
Pipeline
#82901
failed with stages
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
projects/hazdev-ng-geoserve-output/src/lib/distance-azimuth.pipe.spec.ts
View file @
65e978ec
...
@@ -35,10 +35,10 @@ describe('DistanceAzimuthPipe', () => {
...
@@ -35,10 +35,10 @@ describe('DistanceAzimuthPipe', () => {
it
(
'
should calculate correct winds when azimuth is negative
'
,
()
=>
{
it
(
'
should calculate correct winds when azimuth is negative
'
,
()
=>
{
expect
(
pipe
.
compassWinds
(
place
.
azimuth
)).
toEqual
(
'
SSE
'
);
expect
(
pipe
.
compassWinds
(
place
.
azimuth
)).
toEqual
(
'
SSE
'
);
});
});
it
(
'
should calculate correct winds when azimuth is
nega
tive
'
,
()
=>
{
it
(
'
should calculate correct winds when azimuth is
posi
tive
'
,
()
=>
{
expect
(
pipe
.
compassWinds
(
162.7
)).
toEqual
(
'
SSE
'
);
expect
(
pipe
.
compassWinds
(
162.7
)).
toEqual
(
'
SSE
'
);
});
});
it
(
'
should calculate correct winds when azimuth is
nega
tive
'
,
()
=>
{
it
(
'
should calculate correct winds when azimuth is
posi
tive
'
,
()
=>
{
expect
(
pipe
.
compassWinds
(
522.7
)).
toEqual
(
'
SSE
'
);
expect
(
pipe
.
compassWinds
(
522.7
)).
toEqual
(
'
SSE
'
);
});
});
});
});
...
...
Write
Preview
Supports
Markdown
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