We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc1d110 commit e1d2613Copy full SHA for e1d2613
tests/e2e/specs/gscan.cy.js
@@ -192,6 +192,18 @@ describe('GScan component', () => {
192
})
193
194
195
+ describe('Task waiting badges', () => {
196
+ it('displays retry and held icons', () => {
197
+ cy.get('.c-gscan')
198
+ .find('[data-node-name="one"]').as('parent')
199
+ .find('.node:first .task-state-badge:first')
200
+ .should('have.class', 'held')
201
+ // child run2 contributes the running tasks
202
+ cy.get('@parent').find('.node:first .task-state-badge:nth-child(2)')
203
+ .should('have.class', 'retry')
204
+ })
205
206
+
207
describe('Warnings', () => {
208
it('collates warnings up the tree', () => {
209
// NOTE: Log events may be duplicated in offline-mode due to the way the
0 commit comments