Skip to content
Snippets Groups Projects
Unverified Commit ade2a5a6 authored by Nathan Friend's avatar Nathan Friend
Browse files

Add id to release block

This commit adds an id attribute to release blocks to allow them to be
targeted as anchor links.
parent 148c5ccb
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -53,7 +53,7 @@ export default {
};
</script>
<template>
<div class="card">
<div :id="release.tag_name" class="card">
<div class="card-body">
<h2 class="card-title mt-0">
{{ release.name }}
Loading
Loading
Loading
Loading
@@ -88,6 +88,10 @@ describe('Release block', () => {
vm.$destroy();
});
 
it("renders the block with an id equal to the release's tag name", () => {
expect(vm.$el.id).toBe('18.04');
});
it('renders release name', () => {
expect(vm.$el.textContent).toContain(release.name);
});
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment