diff options
| author | Andreas Nedbal <github-bf215181b5140522137b3d4f6b73544a@desu.email> | 2022-05-28 07:28:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-28 14:28:12 +0900 |
| commit | 708fba989adab95b3a4c381f6b351979c5973591 (patch) | |
| tree | 201fad735fcabcd6a96fd6d39fbbdf55797b4584 /packages/client/src/widgets/rss.vue | |
| parent | Remove require captcha from signin from CHANGELOG (#8748) (diff) | |
| download | misskey-708fba989adab95b3a4c381f6b351979c5973591.tar.gz misskey-708fba989adab95b3a4c381f6b351979c5973591.tar.bz2 misskey-708fba989adab95b3a4c381f6b351979c5973591.zip | |
feat(tests): add e2e tests for widgets (#8735)
* test(e2e): add baseline for widget tests
* chore(repo): enable test running in branch
* fix(e2e): set viewport for widget tests
* fix(client): add widget identifier classes to widgets
* test(e2e): add memo widget test
* fix(tests): force select value
* fix(tests): force button press for widget addition
* fix(tests): invoke select value differently
* fix(tests): adjust widget submit
* fix(tests): don't explicitly navigate for widget test
* fix(tests): click label to hide select popup
* fix(tests): just click modal background
* fix(tests): adjust modal background selector
* fix(tests): click all modal backgrounds
* feat(e2e): add test for adding timeline widget
* fix(client): add more widget identifier classes
* feat(tests): add method abstraction for test cases
* fix(tests): force-click overlays
* fix(tests): force widget button press
* fix(tests): remove timeout from final widget check
* feat(tests): add widget removal test case
* fix(client): use mk instead of msky as class prefix
* fix(tests): check widgets for existence rather than visibility
* chore(meta): don't run tests for specific feature branch
Diffstat (limited to 'packages/client/src/widgets/rss.vue')
| -rw-r--r-- | packages/client/src/widgets/rss.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/widgets/rss.vue b/packages/client/src/widgets/rss.vue index 6b057cdd06..fc65f11813 100644 --- a/packages/client/src/widgets/rss.vue +++ b/packages/client/src/widgets/rss.vue @@ -1,5 +1,5 @@ <template> -<MkContainer :show-header="widgetProps.showHeader"> +<MkContainer :show-header="widgetProps.showHeader" class="mkw-rss"> <template #header><i class="fas fa-rss-square"></i>RSS</template> <template #func><button class="_button" @click="configure"><i class="fas fa-cog"></i></button></template> |