<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Mon Feb 12 04:46:15 CET 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Magnolia - Issue tracker</title>
    <link>https://jira.magnolia-cms.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-uk</language>    <build-info>
        <version>9.4.2</version>
        <build-number>940002</build-number>
        <build-date>19-01-2023</build-date>
    </build-info>


<item>
            <title>[NPMCLI-72] Research and document how users can test their modules</title>
                <link>https://jira.magnolia-cms.com/browse/NPMCLI-72</link>
                <project id="13983" key="NPMCLI">Magnolia CLI</project>
                    <description>&lt;p&gt;Investigate and document how you can test light-modules, in a variety of contexts:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Ones managed with maven, as it has a nice functionality to run multiple Node and npm versions.&lt;/li&gt;
	&lt;li&gt;Ones not managed by maven - as light-modules are commonly developed by frontend developers with no maven installed.&lt;/li&gt;
	&lt;li&gt;For light-modules shared on github &amp;amp; npm.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;A few questions:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;What should be tested?&lt;/li&gt;
	&lt;li&gt;How will users create tests?&lt;/li&gt;
	&lt;li&gt;How difficult are the tests to maintain?&lt;/li&gt;
	&lt;li&gt;How can the CLI support this?&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Rationale:&lt;br/&gt;
Tests ensure quality.&lt;br/&gt;
Tests demonstrate quality of projects on npm and github, and facilitate forking and innovation.&lt;/p&gt;</description>
                <environment></environment>
        <key id="57389">NPMCLI-72</key>
            <summary>Research and document how users can test their modules</summary>
                <type id="3" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10898&amp;avatarType=issuetype">Task</type>
                                            <priority id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/neutral.gif">Neutral</priority>
                        <status id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="rkowalski">Robert Kowalski</assignee>
                                    <reporter username="rkowalski">Robert Kowalski</reporter>
                        <labels>
                    </labels>
                <created>Tue, 17 Jan 2017 16:04:29 +0100</created>
                <updated>Wed, 22 Feb 2017 15:12:11 +0100</updated>
                            <resolved>Fri, 10 Feb 2017 16:05:58 +0100</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                                                                <comments>
                            <comment id="138535" author="rkowalski" created="Fri, 3 Feb 2017 18:07:37 +0100"  >&lt;p&gt;mgnl-custom is tested on travis now: &lt;a href=&quot;https://travis-ci.org/robertkowalski/mgnl-custom&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://travis-ci.org/robertkowalski/mgnl-custom&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;commit:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://github.com/robertkowalski/mgnl-custom/commit/93032ac8b247f15f6163bcbd692637539b5c2f32&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/robertkowalski/mgnl-custom/commit/93032ac8b247f15f6163bcbd692637539b5c2f32&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;in this case i am using &quot;jest&quot; as test runner.&lt;/p&gt;</comment>
                            <comment id="138537" author="rkowalski" created="Fri, 3 Feb 2017 20:10:26 +0100"  >&lt;h1&gt;&lt;a name=&quot;TestingLightModules&quot;&gt;&lt;/a&gt;Testing Light Modules&lt;/h1&gt;

&lt;h2&gt;&lt;a name=&quot;Landscape&quot;&gt;&lt;/a&gt;Landscape&lt;/h2&gt;

&lt;p&gt;Testing is an interesting topic as it is so diverse and fragmented. Some developers, even with years of work experience, don&apos;t write tests at all for their software. How testing is done also depends what kind of Light Module we create.&lt;/p&gt;

&lt;p&gt;Some test frameworks are better suited for different needs. As an example: Angular recommends Karma and Jasmine &amp;#8211; the React project suggest Jest for testing. Often the choice of the test runner / test framework is also influenced by what the developer has used in the past. Other reasons can be limitations by other circumstances, e.g. legacy code.&lt;/p&gt;

&lt;p&gt;Most projects on GitHub use Travis CI for continuous integration, but also there is a variety of possible freemium solutions, like Codeship. The services support test matrixes of multiple Node versions, so tests can be run on multiple Node versions. &lt;/p&gt;

&lt;p&gt;While most projects use some sort of unit testing, integration tests (f.e. based on Selenium) are far more uncommon, at least for single libraries. Even for full applications they are not as common as unit tests, probably because they are hard to set up, debug and running slow.&lt;/p&gt;

&lt;h2&gt;&lt;a name=&quot;IntegrationtestingwithSeleniumandMagnolia&quot;&gt;&lt;/a&gt;Integration testing with Selenium and Magnolia&lt;/h2&gt;

&lt;p&gt;Components are set up using dialogs from the admin interface. I thought about running browser tests automated with Selenium, filling out the dialogs and then checking the result. I came to the conclusion that it would be of a very limited use. Running Selenium on the Admin UI would mostly test Magnolias functionality to show dialogs and render templates. It would also require a lot of ongoing maintenance, as soon as Magnolia changes the markup, the developer would have to fix the failing tests.&lt;/p&gt;

&lt;p&gt;Another way would be to programatically create pages with the different Light Modules on it and then test the delivered functionality for the created (public) site. So far I did not get it running with a bootstrap.xml or the HTTP API.&lt;/p&gt;

&lt;h2&gt;&lt;a name=&quot;Whatshouldbetested%3F&quot;&gt;&lt;/a&gt;What should be tested?&lt;/h2&gt;

&lt;p&gt;What should be tested varies from project to projects: the developer (some don&apos;t write tests at all), the complexity of the project and goals of the software. &lt;/p&gt;

&lt;p&gt;Some components are more markup based, some are almost just made out of JavaScript. &lt;/p&gt;

&lt;p&gt;It will be very different depending on the developer and the use case of the Light Module. Setting up the testing framework is a few lines of code, see &lt;a href=&quot;https://github.com/robertkowalski/mgnl-custom/commit/93032ac8b247f15f6163bcbd692637539b5c2f32&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/robertkowalski/mgnl-custom/commit/93032ac8b247f15f6163bcbd692637539b5c2f32&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;&lt;a name=&quot;Howwilluserscreatetests%3F&quot;&gt;&lt;/a&gt;How will users create tests?&lt;/h2&gt;

&lt;p&gt;In &lt;a href=&quot;https://github.com/robertkowalski/mgnl-custom/commit/93032ac8b247f15f6163bcbd692637539b5c2f32&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/robertkowalski/mgnl-custom/commit/93032ac8b247f15f6163bcbd692637539b5c2f32&lt;/a&gt; I installed a test runner and added tests for my Light Module. The way the Light Module is tested is similar to other frontend and node.js.&lt;/p&gt;

&lt;p&gt;As the landscape for testing is so fragmented (different tooling and use cases) there is sadly no silver bullet.&lt;/p&gt;

&lt;p&gt;The tooling part was easy for me. I was struggling to programatically create a test environment in Magnolia itself for integration testing. I tried the Magnolia REST API or other methods like decorators. I did not find a feasible solution. &lt;/p&gt;

&lt;p&gt;Example from CouchDB to set up a test database and test document in a database (analog to pages and components):&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
# create a db
POST   http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:5984/my_test_db {}
&lt;/span&gt;
# create a document
POST   http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:5984/my_test_db/my_test_doc {&lt;span class=&quot;code-quote&quot;&gt;&quot;food&quot;&lt;/span&gt;: [&lt;span class=&quot;code-quote&quot;&gt;&quot;pizza&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;apple&quot;&lt;/span&gt;]}&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;


&lt;h2&gt;&lt;a name=&quot;HowcantheCLIsupportthis%3F&quot;&gt;&lt;/a&gt;How can the CLI support this?&lt;/h2&gt;

&lt;p&gt;The npm ecosystem already provides everything (libraries, npm test command etc) needed. When people write tests for their frontend project, they will in 99.99% use npm to install the test runners.&lt;/p&gt;

&lt;p&gt;If we can&apos;t improve the REST API / API docs directly we could somehow wrap the needed steps in the CLI as a last resort. In the perfect world the CLI wouldn&apos;t need to abstract and simplify it. &lt;/p&gt;

&lt;p&gt;As part of my tests I spiked a command for the CLI (&quot;mgnl get&quot;) which I demoed this Geeky Friday. When a package is on npm, its easy to get the package without a package JSON with the command. The default `node_modules` folder is not created in the process.  Its compatible to npm and npm based builds, so packages can be used as pre-build standalone (mgnl get) and at the same time as part of a another main build (npm install).&lt;/p&gt;

&lt;h2&gt;&lt;a name=&quot;Conclusion&quot;&gt;&lt;/a&gt;Conclusion&lt;/h2&gt;

&lt;p&gt;Testing the JS in Light Modules is similar to other JS testing. &lt;/p&gt;

&lt;p&gt;I was mainly struggling to programatically create a test environment in Magnolia.&lt;/p&gt;

&lt;p&gt;The goal for me was to setup a Magnolia with my Modules on every CI run for Selenium based integration tests. &lt;/p&gt;

&lt;p&gt;If we can simplify creating a page with a component using the REST API we can support testing with different Selenium based frameworks a lot better.&lt;/p&gt;</comment>
                            <comment id="138608" author="rkowalski" created="Mon, 6 Feb 2017 17:41:59 +0100"  >&lt;p&gt;Possible test frameworks for integration testing:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.protractortest.org/#/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.protractortest.org/#/&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://theintern.github.io/intern/#writing-functional-test&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://theintern.github.io/intern/#writing-functional-test&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://nightwatchjs.org/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://nightwatchjs.org/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Super simple (incomplete) approach: we could also just request the http page and use &lt;a href=&quot;https://github.com/cheeriojs/cheerio&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/cheeriojs/cheerio&lt;/a&gt; to traverse the DOM in a jquery like fashion. Problem is we are very limited (no DOM interactions like clicks or scrolls possible) and also CSS issues (box overlapping a link and not clickable) are not covered. &lt;/p&gt;</comment>
                            <comment id="138727" author="rkowalski" created="Wed, 8 Feb 2017 11:19:43 +0100"  >&lt;p&gt;After discussion with Topher, mgnl-custom now supports integration testing with Travis CI.&lt;/p&gt;

&lt;p&gt;Have to sync with Topher again today.&lt;/p&gt;</comment>
                            <comment id="138728" author="rkowalski" created="Wed, 8 Feb 2017 11:21:06 +0100"  >&lt;p&gt;estimation: 1 more story point&lt;/p&gt;</comment>
                            <comment id="138734" author="rkowalski" created="Wed, 8 Feb 2017 12:15:09 +0100"  >&lt;p&gt;Integration testing works great on travis, `cheerio` is our choice for template testing right now - further questions/tasks:&lt;/p&gt;

&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;replace `mgnl jumpstart` based setup with a solution that enables to switch between magnolia versions. can we use a docker container or do we have an apt-mirror? travis supports apt-caching.&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;Tasks:&lt;/p&gt;

&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;&lt;del&gt;add cheerio based test&lt;/del&gt;&lt;/li&gt;
	&lt;li&gt;&lt;del&gt;ask jan about the status docker-container&lt;/del&gt;&lt;/li&gt;
	&lt;li&gt;&lt;del&gt;find out if there are apt-mirrors&lt;/del&gt;&lt;/li&gt;
	&lt;li&gt;&lt;del&gt;adjust the example to them&lt;/del&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;&lt;del&gt;replace grep with cheerio&lt;/del&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;document in wiki&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="138864" author="rkowalski" created="Fri, 10 Feb 2017 12:12:13 +0100"  >&lt;p&gt;light module unit &amp;amp; integration tests running in a test matrix with different magnolia versions on travis now:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://github.com/robertkowalski/mgnl-custom/commit/9f7339b3888285b17b9c550604065db2523c25a7&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/robertkowalski/mgnl-custom/commit/9f7339b3888285b17b9c550604065db2523c25a7&lt;/a&gt;&lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;38068_thumb&quot; href=&quot;https://jira.magnolia-cms.com/secure/attachment/38068/38068_Screen+Shot+2017-02-10+at+10.48.09.png&quot; title=&quot;Screen Shot 2017-02-10 at 10.48.09.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;38068&quot; file-preview-title=&quot;Screen Shot 2017-02-10 at 10.48.09.png&quot;&gt;&lt;img src=&quot;https://jira.magnolia-cms.com/secure/thumbnail/38068/_thumb_38068.png&quot; style=&quot;border: 0px solid black&quot; role=&quot;presentation&quot;/&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;</comment>
                            <comment id="138890" author="rkowalski" created="Fri, 10 Feb 2017 16:05:38 +0100"  >&lt;p&gt;results moved to &lt;a href=&quot;https://wiki.magnolia-cms.com/display/DEVINT/Testing+Light+Modules+for+Frontend+Developers&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://wiki.magnolia-cms.com/display/DEVINT/Testing+Light+Modules+for+Frontend+Developers&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;scope grew over the week, re-estimate?&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="38068" name="Screen Shot 2017-02-10 at 10.48.09.png" size="76325" author="rkowalski" created="Fri, 10 Feb 2017 12:12:12 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_14166" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Acceptance criteria</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                                    <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge aui-lozenge-complete" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>Empty</span></span></div>
                        ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10111" key="com.atlassian.jira.toolkit:reporterdomain">
                        <customfieldname>Company</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>magnolia-cms.com</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_12730" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_14151" key="com.atlassian.jira.toolkit:message">
                        <customfieldname>Docu info</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10061" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comm is not jira-dev</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10071" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last participant</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>czimmermann</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_13136" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            7 years, 1 week, 2 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10150" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname>Number of comments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>rkowalski</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|hzzzq1:zr520ezxz8idzy0003wl8v</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10244" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10245" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="423">Basel 82</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10242" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>13.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_14167" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Task DoR</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                                    <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge aui-lozenge-complete" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>Empty</span></span></div>
                        ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_14145" key="com.intenso.jira.issue-templates:issue-templates-customfield">
                        <customfieldname>Template</customfieldname>
                        <customfieldvalues>
                            


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_15131" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Time in Discovery</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10032" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>