You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { create } from 'ember-cli-page-object';
import dragSortList from 'my-app/tests/pages/components/drag-sort-list'
export default create({
sortableList: dragSortList({}, '[draggable]'),
});
using this as page object for my tests it just doesn't run it and ignore it.
but just when using '[draggable]', when I just use sortableList: dragSortList, it doesn't break the test, but in my case isn't working because I use the handle for it and it shows me just one item on the list. I tried to check on the tests that are already on the repo to find some light but there is no test with the drag handle.
The text was updated successfully, but these errors were encountered:
using this as page object for my tests it just doesn't run it and ignore it.
but just when using
'[draggable]'
, when I just usesortableList: dragSortList
, it doesn't break the test, but in my case isn't working because I use the handle for it and it shows me just one item on the list. I tried to check on the tests that are already on the repo to find some light but there is no test with the drag handle.The text was updated successfully, but these errors were encountered: