Skip to content

Commit 2dc792a

Browse files
committed
Merge upstream/master into tree-view
2 parents 8db0def + d8c215a commit 2dc792a

File tree

7 files changed

+290
-73
lines changed

7 files changed

+290
-73
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
uses: actions/checkout@v4
124124

125125
- name: Download coverage artifacts
126-
uses: actions/download-artifact@v4
126+
uses: actions/download-artifact@v5
127127

128128
- name: Codecov upload
129129
uses: codecov/codecov-action@v5

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@lumino/default-theme": "2.1.10",
3030
"@lumino/widgets": "2.7.1",
3131
"@mdi/js": "7.4.47",
32-
"@vueuse/core": "13.5.0",
32+
"@vueuse/core": "13.6.0",
3333
"apexcharts": "3.54.1",
3434
"axios": "1.11.0",
3535
"dedent": "1.6.0",
@@ -41,7 +41,7 @@
4141
"markdown-it": "14.1.0",
4242
"mitt": "3.0.1",
4343
"nprogress": "1.0.0-1",
44-
"preact": "10.26.9",
44+
"preact": "10.27.0",
4545
"simple-icons": "15.2.0",
4646
"subscriptions-transport-ws": "0.11.0",
4747
"svg-pan-zoom": "3.6.2",
@@ -50,18 +50,18 @@
5050
"vue-router": "4.5.1",
5151
"vue-the-mask": "0.11.1",
5252
"vue3-apexcharts": "1.8.0",
53-
"vuetify": "3.9.0",
53+
"vuetify": "3.9.5",
5454
"vuex": "4.1.0"
5555
},
5656
"devDependencies": {
5757
"@cypress/code-coverage": "3.14.5",
58-
"@vitejs/plugin-react": "4.7.0",
58+
"@vitejs/plugin-react": "5.0.0",
5959
"@vitejs/plugin-vue": "6.0.1",
6060
"@vitest/coverage-istanbul": "3.2.4",
6161
"@vue/test-utils": "2.4.6",
6262
"concurrently": "9.2.0",
6363
"cross-fetch": "4.1.0",
64-
"cypress": "14.5.3",
64+
"cypress": "14.5.4",
6565
"cypress-vite": "1.6.0",
6666
"eslint": "8.57.1",
6767
"eslint-config-standard": "17.1.0",
@@ -83,7 +83,7 @@
8383
"sass-embedded": "1.89.2",
8484
"sinon": "21.0.0",
8585
"standard": "17.1.2",
86-
"vite": "7.0.6",
86+
"vite": "7.1.1",
8787
"vite-plugin-eslint": "1.8.1",
8888
"vite-plugin-istanbul": "7.1.0",
8989
"vite-plugin-vuetify": "2.1.2",

src/components/cylc/ViewToolbar.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
7272

7373
<script>
7474
import { btnProps } from '@/utils/viewToolbar'
75-
import { VTreeview } from 'vuetify/labs/VTreeview'
7675
7776
export default {
7877
name: 'ViewToolbar',
7978
80-
components: {
81-
VTreeview,
82-
},
83-
8479
emits: [
8580
'setOption'
8681
],

tests/e2e/specs/analysis.cy.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ describe('Analysis view', () => {
4646
.should('be.empty')
4747
cy
4848
.get('input#c-analysis-filter-task-platforms')
49-
.should('have.value', '-1')
49+
.should('have.value', 'All')
5050
cy
5151
.get('input#c-analysis-filter-task-timings')
52-
.should('have.value', 'totalTimes')
52+
.should('have.value', 'Total times')
5353
})
5454

5555
it('Should filter by task name', () => {
@@ -507,7 +507,7 @@ describe('Filters and Options save state', () => {
507507
cy.get('.c-table .v-data-table-footer__items-per-page .v-select')
508508
.as('itemsPerPage')
509509
.find('input')
510-
.should('not.have.value', -1)
510+
.should('not.have.value', 'All')
511511
.get('@itemsPerPage')
512512
.click()
513513
.get('[role="listbox"] .v-list-item')
@@ -516,7 +516,7 @@ describe('Filters and Options save state', () => {
516516
// Wait for menu to close
517517
.should('not.exist')
518518
.get('@itemsPerPage').find('input')
519-
.should('have.value', -1)
519+
.should('have.value', 'All')
520520
// Navigate away
521521
cy.visit('/#/')
522522
.get('.c-dashboard')
@@ -525,7 +525,7 @@ describe('Filters and Options save state', () => {
525525
cy.get('@platformCol')
526526
.should('have.class', sortedClass)
527527
cy.get('@itemsPerPage').find('input')
528-
.should('have.value', -1)
528+
.should('have.value', 'All')
529529
})
530530

531531
it('remembers box and whisker sorting options when switching between workflows', () => {

tests/e2e/specs/table.cy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ describe('State saving', () => {
183183
cy.get('.c-table .v-data-table-footer__items-per-page .v-select')
184184
.as('itemsPerPage')
185185
.find('input')
186-
.should('not.have.value', -1)
186+
.should('not.have.value', 'All')
187187
.get('@itemsPerPage')
188188
.click()
189189
.get('[role="listbox"] .v-list-item')
@@ -192,7 +192,7 @@ describe('State saving', () => {
192192
// Wait for menu to close
193193
.should('not.exist')
194194
.get('@itemsPerPage').find('input')
195-
.should('have.value', -1)
195+
.should('have.value', 'All')
196196
// Navigate away
197197
cy.visit('/#/')
198198
.get('.c-dashboard')
@@ -201,7 +201,7 @@ describe('State saving', () => {
201201
cy.get('@platformCol')
202202
.should('have.class', sortedClass)
203203
cy.get('@itemsPerPage').find('input')
204-
.should('have.value', -1)
204+
.should('have.value', 'All')
205205
})
206206

207207
describe('Flow nums', () => {

tests/e2e/specs/toolbar.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ describe('N-window selector', () => {
110110
cy.get('[data-cy=n-win-selector]')
111111
.click()
112112
.get('[data-cy=n-win-popup]')
113-
.find('[role=combobox]')
113+
.find('.v-field[role=combobox]')
114114
.click()
115115
.invoke('attr', 'aria-controls').then((dropdownID) => {
116116
cy.get(`#${dropdownID}`)

0 commit comments

Comments
 (0)