UNPKG

siesta-lite

Version:

Stress-free JavaScript unit testing and functional testing tool, works in NodeJS and browsers

88 lines (83 loc) 3.08 kB
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js">/* Siesta 5.6.1 Copyright(c) 2009-2022 Bryntum AB https://bryntum.com/contact https://bryntum.com/products/siesta/license */ Ext.define(&#39;Siesta.Project.Browser.UI.TestGridContextMenu&#39;, { extend : &#39;Ext.menu.Menu&#39;, xtype : &#39;testgridcontextmenu&#39;, items : [ { itemId : &#39;uncheckOthers&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;uncheckOthersText&#39;) }, { itemId : &#39;uncheckAll&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;uncheckAllText&#39;) }, { itemId : &#39;checkAll&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;checkAllText&#39;) }, { itemId : &#39;runThis&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;runThisText&#39;) }, { itemId : &#39;viewSource&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;viewSource&#39;) }, { text : &#39;Link to this test&#39;, menu : [ { itemId : &#39;linkSelect&#39;, text : &#39;Select only&#39; }, { itemId : &#39;linkFilterAutoLaunch&#39;, text : &#39;Filter and auto launch&#39; } ] }, { xtype : &#39;menuseparator&#39; }, { itemId : &#39;expandAll&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;expandAll&#39;) }, { itemId : &#39;collapseAll&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;collapseAll&#39;) }, { xtype : &#39;menuseparator&#39; }, { itemId : &#39;filterToCurrentGroup&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;filterToCurrentGroup&#39;) }, { itemId : &#39;filterToFailed&#39;, text : Siesta.Resource(&#39;Siesta.Project.Browser.UI.Viewport&#39;).get(&#39;filterToFailed&#39;) } ] }) </pre> </body> </html>