12 lines
324 B
CoffeeScript
12 lines
324 B
CoffeeScript
import { moduleForModel, test } from 'ember-qunit'
|
|
|
|
moduleForModel 'panda/workflow-action-connection', 'Unit | Model | panda/workflow action connection', {
|
|
# Specify the other units that are required for this test.
|
|
needs: []
|
|
}
|
|
|
|
test 'it exists', (assert) ->
|
|
model = @subject()
|
|
# store = @store()
|
|
assert.ok !!model
|