969ef8d1ed
Closes #6 Form can be prefilled using query params on the route. The params are `recipient`, `amount`, `url` and `ipfsHash`.
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:proposals/new', 'Unit | Route | proposals/new', {
|
|
// Specify the other units that are required for this test.
|
|
// needs: ['controller:foo']
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.subject();
|
|
assert.ok(route);
|
|
});
|