Skip to content

Commit 0dc28b2

Browse files
committed
add a warp-drive test
- this is expected to fail until the ember-api-docs-data has been rebuilt for EmberData 5.3.4 and above
1 parent cecf280 commit 0dc28b2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tests/acceptance/warp-drive-test.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { module, test } from 'qunit';
2+
import { setupApplicationTest } from 'ember-qunit';
3+
import { visit } from '@ember/test-helpers';
4+
5+
module('Acceptance | WarpDrive', function (hooks) {
6+
setupApplicationTest(hooks);
7+
8+
test('can visit a @warp-drive package', async function (assert) {
9+
await visit(
10+
'/ember-data/release/modules/@warp-drive%2Fbuild-config%2Fdeprecations'
11+
);
12+
13+
assert
14+
.dom('.module-name')
15+
.includesText('Package @warp-drive/build-config/deprecations');
16+
});
17+
});

0 commit comments

Comments
 (0)