Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 11:52:54 +01:00
Fix tests
Dieser Commit ist enthalten in:
Ursprung
0313e1be95
Commit
1f320aac93
2 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
4
.github/workflows/plugin-tests.yml
gevendort
4
.github/workflows/plugin-tests.yml
gevendort
|
@ -51,7 +51,7 @@ jobs:
|
|||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: plugins/${{ github.event.repository.name }}
|
||||
ref: "${{ github.base_ref }}"
|
||||
ref: "${{ github.head_ref }}"
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Setup Git
|
||||
|
@ -149,5 +149,5 @@ jobs:
|
|||
|
||||
- name: Wizard QUnit
|
||||
if: matrix.build_type == 'frontend'
|
||||
run: LOAD_PLUGINS=1 QUNIT_EMBER_CLI=0 RAILS_ENABLE_TEST_LOG=1 QUNIT_SKIP_CORE=1 bin/rake qunit:test['600000','/w/qunit']
|
||||
run: LOAD_PLUGINS=1 QUNIT_EMBER_CLI=0 QUNIT_SKIP_CORE=1 bin/rake qunit:test['600000','/w/qunit']
|
||||
timeout-minutes: 10
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
CustomWizard::Engine.routes.draw do
|
||||
get '/qunit' => 'wizard#qunit'
|
||||
get 'qunit' => 'wizard#qunit'
|
||||
get ':wizard_id' => 'wizard#index'
|
||||
put ':wizard_id/skip' => 'wizard#skip'
|
||||
get ':wizard_id/steps' => 'wizard#index'
|
||||
|
|
Laden …
In neuem Issue referenzieren