adding ScatterChart2CsvConverterTest

This commit is contained in:
frankknoll
2023-11-10 17:57:07 +01:00
parent ab16d68f0f
commit acfe871d1d
6 changed files with 59 additions and 5 deletions

View File

@@ -3,12 +3,12 @@ QUnit.module('SymptomVsSymptomChartDataProviderTest', function () {
QUnit.test('shouldProvideChartData', function (assert) {
// Given
const prrByLotX = {
"lotX": 1.0,
"lotCommon": 2.0
'lotX': 1.0,
'lotCommon': 2.0
};
const prrByLotY = {
"lotCommon": 3.0,
"lotY": 4.0
'lotCommon': 3.0,
'lotY': 4.0
};
// When
@@ -18,7 +18,7 @@ QUnit.module('SymptomVsSymptomChartDataProviderTest', function () {
assert.deepEqual(
chartData,
{
labels: ["lotCommon"],
labels: ['lotCommon'],
data: [
{
x: 2.0,