- {{
- select-2
- multiple=true
- content=characteristics
- value=selectedCharacteristic
- optionValuePath="id"
- placeholder="Choose a characteristic"
- }}
+
-{{
- measurement-search-table
- selectedStrain=selectedStrain
- selectedCharacteristic=selectedCharacteristic
-}}
+
+
+
Total matching measurements: {{measurements.length}}
+
+
+
+
+
+
+ Strain |
+ Characteristic |
+ Value |
+
+
+
+ {{#each measurements as |measurement|}}
+
+ {{{measurement.strain.fullNameMU}}} |
+ {{measurement.characteristic.characteristicName}} |
+ {{{measurement.value}}} |
+
+ {{/each}}
+
+
diff --git a/app/styles/app.css b/app/styles/app.css
index b5d48ca..ff245dd 100644
--- a/app/styles/app.css
+++ b/app/styles/app.css
@@ -2,6 +2,10 @@
padding: 2em 0em 0em 0em;
}
+.select2-container {
+ width: 100%;
+}
+
.flakes-table thead tr th span {
cursor: pointer;
}
diff --git a/tests/unit/components/display-error-test.js b/tests/unit/components/display-error-test.js
deleted file mode 100644
index e81245a..0000000
--- a/tests/unit/components/display-error-test.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import {
- moduleForComponent,
- test
-} from 'ember-qunit';
-
-moduleForComponent('display-error', {
- // Specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar']
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // Creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // Renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/components/genus-name-test.js b/tests/unit/components/genus-name-test.js
deleted file mode 100644
index 8993325..0000000
--- a/tests/unit/components/genus-name-test.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import {
- moduleForComponent,
- test
-} from 'ember-qunit';
-
-moduleForComponent('genus-name', {
- // Specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar']
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // Creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // Renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/components/measurements/measurement-row-test.js b/tests/unit/components/measurements/measurement-row-test.js
deleted file mode 100644
index 1664fcd..0000000
--- a/tests/unit/components/measurements/measurement-row-test.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import {
- moduleForComponent,
- test
-} from 'ember-qunit';
-
-moduleForComponent('measurements/measurement-row', {
- // specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar']
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/components/species/species-details-test.js b/tests/unit/components/species/species-details-test.js
deleted file mode 100644
index b3c5c67..0000000
--- a/tests/unit/components/species/species-details-test.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import {
- moduleForComponent,
- test
-} from 'ember-qunit';
-
-moduleForComponent('species/species-details', {
- // Specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar']
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // Creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // Renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/components/strains/strain-details-test.js b/tests/unit/components/strains/strain-details-test.js
deleted file mode 100644
index a52c33c..0000000
--- a/tests/unit/components/strains/strain-details-test.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import {
- moduleForComponent,
- test
-} from 'ember-qunit';
-
-moduleForComponent('strains/strain-details', {
- // Specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar']
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // Creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // Renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/pods/components/measurement-index-row/component-test.js b/tests/unit/pods/components/measurement-index-row/component-test.js
deleted file mode 100644
index af52af6..0000000
--- a/tests/unit/pods/components/measurement-index-row/component-test.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import { moduleForComponent, test } from 'ember-qunit';
-
-moduleForComponent('measurement-index-row', 'Unit | Component | measurement index row', {
- // Specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar']
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // Creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // Renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/pods/components/measurement-search-table/component-test.js b/tests/unit/pods/components/measurement-search-table/component-test.js
deleted file mode 100644
index 6ec5359..0000000
--- a/tests/unit/pods/components/measurement-search-table/component-test.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import { moduleForComponent, test } from 'ember-qunit';
-
-moduleForComponent('measurement-search-table', 'Unit | Component | measurement search table', {
- // Specify the other units that are required for this test
- // needs: ['component:foo', 'helper:bar'],
- unit: true
-});
-
-test('it renders', function(assert) {
- assert.expect(2);
-
- // Creates the component instance
- var component = this.subject();
- assert.equal(component._state, 'preRender');
-
- // Renders the component to the page
- this.render();
- assert.equal(component._state, 'inDOM');
-});
diff --git a/tests/unit/pods/measurements/controller-test.js b/tests/unit/pods/measurements/controller-test.js
new file mode 100644
index 0000000..f20328f
--- /dev/null
+++ b/tests/unit/pods/measurements/controller-test.js
@@ -0,0 +1,12 @@
+import { moduleFor, test } from 'ember-qunit';
+
+moduleFor('controller:measurements', {
+ // Specify the other units that are required for this test.
+ // needs: ['controller:foo']
+});
+
+// Replace this with your real tests.
+test('it exists', function(assert) {
+ var controller = this.subject();
+ assert.ok(controller);
+});