We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cecf280 commit 0dc28b2Copy full SHA for 0dc28b2
tests/acceptance/warp-drive-test.js
@@ -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