8ebaeaac0b
* Handle conflict swith a cas qp on save and create * Notify error and give them refresh or overwrite options * Merge conflict missed, resolved * Mirage fixture * Integration test * Bracket closed (thx jai) * Adjust tests to account for number of variables with auto-conflicter
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
import { create, visitable } from 'ember-cli-page-object';
|
|
|
|
export default create({
|
|
visit: visitable('/variables'),
|
|
visitNew: visitable('/variables/new'),
|
|
visitConflicting: visitable(
|
|
'/variables/var/Auto-conflicting%20Variable@default/edit'
|
|
),
|
|
});
|