Skip to content
Snippets Groups Projects
Commit 12d83966 authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: updated e2e for pli

chore: added release notes
parent ebed86c2
No related branches found
No related tags found
No related merge requests found
# v2.2.3
## Bugfixes
- Fixed `undefined` showing for hemisphere metadata (#537)
- Fixed non atlas image e2e test URL
## Under the hood stuff
- renamed css class for consistency
\ No newline at end of file
......@@ -113,6 +113,40 @@ describe('> non-atlas images', () => {
}
)
)
const arr = [
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-FOM-HSV_R",
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-FOM-HSV_G",
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-FOM-HSV_B",
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI",
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-TIM",
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-MRI",
"https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-MRS",
]
expect(
interceptedCalls
).toContain(
jasmine.objectContaining(
{
method: 'GET',
url: 'https://neuroglancer.humanbrainproject.org/precomputed/BigBrainRelease.2015/8bit/info'
}
)
)
for (const url of arr) {
expect(
interceptedCalls
).toContain(
jasmine.objectContaining(
{
method: 'GET',
url: `${url}/info`
}
)
)
}
})
it('> if ref tmpl is not right, only tmpl is loaded', async () => {
......
......@@ -40,6 +40,7 @@ pages:
- Fetching datasets: 'advanced/datasets.md'
- Display non-atlas volumes: 'advanced/otherVolumes.md'
- Release notes:
- v2.2.3: 'releases/v2.2.3.md'
- v2.2.2: 'releases/v2.2.2.md'
- v2.2.1: 'releases/v2.2.1.md'
- v2.2.0: 'releases/v2.2.0.md'
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment