mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-11 16:21:24 -05:00
11 lines
199 B
Text
11 lines
199 B
Text
|
|
||
|
module("Acceptance: wizard");
|
||
|
|
||
|
test("Wizard loads", assert => {
|
||
|
visit("/");
|
||
|
andThen(() => {
|
||
|
assert.ok(exists('.wizard-column-contents'));
|
||
|
assert.equal(currentPath(), 'steps');
|
||
|
});
|
||
|
});
|