Skip to content

Commit d6994ba

Browse files
author
Michael Recachinas
committed
chore: Re-run prettier with single-quotes and bump version to 0.1.9
1 parent 6e30ad8 commit d6994ba

20 files changed

+329
-329
lines changed

__tests__/ArrayLayer.test.js

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
import React from "react";
2-
import { expect } from "chai";
3-
import sinon from "sinon";
4-
import { configure, mount } from "enzyme";
5-
import Adapter from "enzyme-adapter-react-16";
6-
import toJson from "enzyme-to-json";
7-
import { Plot } from "sigplot";
8-
import { ArrayLayer } from "../src/index.js";
1+
import React from 'react';
2+
import { expect } from 'chai';
3+
import sinon from 'sinon';
4+
import { configure, mount } from 'enzyme';
5+
import Adapter from 'enzyme-adapter-react-16';
6+
import toJson from 'enzyme-to-json';
7+
import { Plot } from 'sigplot';
8+
import { ArrayLayer } from '../src/index.js';
99

1010
configure({ adapter: new Adapter() });
1111

1212
window.alert = (msg) => {
1313
console.log(msg);
1414
};
1515

16-
describe("<ArrayLayer />", () => {
16+
describe('<ArrayLayer />', () => {
1717
beforeEach(() => {
18-
sinon.spy(Plot.prototype, "overlay_array");
19-
sinon.spy(Plot.prototype, "reload");
20-
sinon.spy(Plot.prototype, "headermod");
18+
sinon.spy(Plot.prototype, 'overlay_array');
19+
sinon.spy(Plot.prototype, 'reload');
20+
sinon.spy(Plot.prototype, 'headermod');
2121
});
2222

2323
afterEach(() => {
@@ -26,9 +26,9 @@ describe("<ArrayLayer />", () => {
2626
Plot.prototype.headermod.restore();
2727
});
2828

29-
it("reloads plot on data prop change", () => {
29+
it('reloads plot on data prop change', () => {
3030
const options = {};
31-
const element = global.document.createElement("div");
31+
const element = global.document.createElement('div');
3232
const context = { plot: new Plot(element, options) };
3333

3434
let random = [];
@@ -47,7 +47,7 @@ describe("<ArrayLayer />", () => {
4747
expect(component.instance().plot._Gx.expand).to.equal(false);
4848
expect(component.instance().plot._Gx.autol).to.equal(-1);
4949
expect(component.instance().plot._Gx.lyr).to.have.lengthOf(1);
50-
expect(component.instance().plot._Gx.lyr[0].options).to.be.an("object").that
50+
expect(component.instance().plot._Gx.lyr[0].options).to.be.an('object').that
5151
.is.empty;
5252
expect(component.instance().plot._Gx.lyr[0].ypoint).to.have.lengthOf(
5353
oneDimensionalData.length
@@ -69,7 +69,7 @@ describe("<ArrayLayer />", () => {
6969
expect(component.instance().plot._Gx.expand).to.equal(false);
7070
expect(component.instance().plot._Gx.autol).to.equal(-1);
7171
expect(component.instance().plot._Gx.lyr).to.have.lengthOf(1);
72-
expect(component.instance().plot._Gx.lyr[0].options).to.be.an("object").that
72+
expect(component.instance().plot._Gx.lyr[0].options).to.be.an('object').that
7373
.is.empty;
7474
expect(component.instance().plot._Gx.lyr[0].ypoint).to.have.lengthOf(
7575
oneDimensionalData2.length
@@ -81,7 +81,7 @@ describe("<ArrayLayer />", () => {
8181

8282
it("doesn't do anything when props change but remain the same", () => {
8383
const options = { framesize: 1000 };
84-
const element = global.document.createElement("div");
84+
const element = global.document.createElement('div');
8585
const context = { plot: new Plot(element, options) };
8686

8787
let random = [];
@@ -106,9 +106,9 @@ describe("<ArrayLayer />", () => {
106106
expect(component.instance().plot._Gx.lyr[0].size).to.equal(1000);
107107
});
108108

109-
it("changes layer settings on layerOptions prop change", () => {
109+
it('changes layer settings on layerOptions prop change', () => {
110110
const options = { framesize: 1000 };
111-
const element = global.document.createElement("div");
111+
const element = global.document.createElement('div');
112112
const context = { plot: new Plot(element, options) };
113113

114114
let random = [];
@@ -135,9 +135,9 @@ describe("<ArrayLayer />", () => {
135135
expect(component.instance().plot._Gx.lyr[0].size).to.equal(50);
136136
});
137137

138-
it("headermods plot on options prop change", () => {
138+
it('headermods plot on options prop change', () => {
139139
const options = {};
140-
const element = global.document.createElement("div");
140+
const element = global.document.createElement('div');
141141
const context = { plot: new Plot(element, options) };
142142

143143
let random = [];
@@ -157,25 +157,25 @@ describe("<ArrayLayer />", () => {
157157
expect(component.instance().plot._Gx.expand).to.equal(false);
158158
expect(component.instance().plot._Gx.autol).to.equal(-1);
159159
expect(component.instance().plot._Gx.lyr).to.have.lengthOf(1);
160-
expect(component.instance().plot._Gx.lyr[0].options).to.be.an("object").that
160+
expect(component.instance().plot._Gx.lyr[0].options).to.be.an('object').that
161161
.is.empty;
162162
expect(component.instance().plot._Gx.lyr[0].ypoint).to.have.lengthOf(
163163
oneDimensionalData.length
164164
);
165165
expect(component.instance().plot._Gx.lyr[0].ypoint).to.eql(
166166
new Float64Array(oneDimensionalData)
167167
);
168-
expect(Plot.prototype.overlay_array).to.have.property("callCount", 1);
169-
expect(Plot.prototype.reload).to.have.property("callCount", 0);
170-
expect(Plot.prototype.headermod).to.have.property("callCount", 0);
168+
expect(Plot.prototype.overlay_array).to.have.property('callCount', 1);
169+
expect(Plot.prototype.reload).to.have.property('callCount', 0);
170+
expect(Plot.prototype.headermod).to.have.property('callCount', 0);
171171

172172
const newOptions = { subsize: 100 };
173173

174174
component.setProps({ options: newOptions });
175175
expect(component.props().options.subsize).to.equal(100);
176176
expect(component.instance().plot._Gx.lyr[0].hcb.subsize).to.equal(100);
177-
expect(Plot.prototype.overlay_array).to.have.property("callCount", 1);
178-
expect(Plot.prototype.reload).to.have.property("callCount", 0);
179-
expect(Plot.prototype.headermod).to.have.property("callCount", 1);
177+
expect(Plot.prototype.overlay_array).to.have.property('callCount', 1);
178+
expect(Plot.prototype.reload).to.have.property('callCount', 0);
179+
expect(Plot.prototype.headermod).to.have.property('callCount', 1);
180180
});
181181
});

__tests__/HrefLayer.test.js

+38-38
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
import React from "react";
2-
import { expect } from "chai";
3-
import sinon from "sinon";
4-
import { configure, mount } from "enzyme";
5-
import Adapter from "enzyme-adapter-react-16";
6-
import toJson from "enzyme-to-json";
7-
import { Plot } from "sigplot";
8-
import { HrefLayer } from "../src/index.js";
1+
import React from 'react';
2+
import { expect } from 'chai';
3+
import sinon from 'sinon';
4+
import { configure, mount } from 'enzyme';
5+
import Adapter from 'enzyme-adapter-react-16';
6+
import toJson from 'enzyme-to-json';
7+
import { Plot } from 'sigplot';
8+
import { HrefLayer } from '../src/index.js';
99

1010
configure({ adapter: new Adapter() });
1111

1212
window.alert = (msg) => {
1313
console.log(msg);
1414
};
1515

16-
describe("<HrefLayer />", () => {
16+
describe('<HrefLayer />', () => {
1717
beforeEach(() => {
18-
sinon.spy(Plot.prototype, "deoverlay");
19-
sinon.spy(Plot.prototype, "overlay_href");
20-
sinon.spy(Plot.prototype, "change_settings");
18+
sinon.spy(Plot.prototype, 'deoverlay');
19+
sinon.spy(Plot.prototype, 'overlay_href');
20+
sinon.spy(Plot.prototype, 'change_settings');
2121
});
2222

2323
afterEach(() => {
@@ -26,76 +26,76 @@ describe("<HrefLayer />", () => {
2626
Plot.prototype.change_settings.restore();
2727
});
2828

29-
it("reloads plot on href prop change", () => {
30-
const element = global.document.createElement("div");
29+
it('reloads plot on href prop change', () => {
30+
const element = global.document.createElement('div');
3131
const context = { plot: new Plot(element, {}) };
32-
const hrefOne = "";
32+
const hrefOne = '';
3333
const component = mount(<HrefLayer href={hrefOne} />, { context });
3434

3535
expect(component.props().href).to.equal(hrefOne);
3636
expect(component.instance().plot).to.not.be.undefined;
37-
expect(Plot.prototype.deoverlay).to.have.property("callCount", 0);
38-
expect(Plot.prototype.overlay_href).to.have.property("callCount", 1);
37+
expect(Plot.prototype.deoverlay).to.have.property('callCount', 0);
38+
expect(Plot.prototype.overlay_href).to.have.property('callCount', 1);
3939
expect(Plot.prototype.overlay_href.getCall(0).args).to.have.length(3);
4040
expect(Plot.prototype.overlay_href.getCall(0).args[0]).to.equal(hrefOne);
4141

42-
const hrefTwo = "dat/penny.prm";
42+
const hrefTwo = 'dat/penny.prm';
4343
component.setProps({ href: hrefTwo });
4444
expect(component.props().href).to.equal(hrefTwo);
4545
expect(component.instance().plot).to.not.be.undefined;
46-
expect(Plot.prototype.deoverlay).to.have.property("callCount", 1);
46+
expect(Plot.prototype.deoverlay).to.have.property('callCount', 1);
4747
expect(Plot.prototype.deoverlay.getCall(0).args).to.not.be.empty;
48-
expect(Plot.prototype.overlay_href).to.have.property("callCount", 2);
48+
expect(Plot.prototype.overlay_href).to.have.property('callCount', 2);
4949
expect(Plot.prototype.overlay_href.getCall(1).args).to.have.length(3);
5050
expect(Plot.prototype.overlay_href.getCall(1).args[0]).to.equal(hrefTwo);
5151
});
5252

5353
it("doesn't do anything when props change, but stay the same", () => {
54-
const element = global.document.createElement("div");
54+
const element = global.document.createElement('div');
5555
const context = { plot: new Plot(element, {}) };
56-
const hrefOne = "dat/penny.prm";
56+
const hrefOne = 'dat/penny.prm';
5757
const options = {};
5858
const component = mount(<HrefLayer href={hrefOne} options={options} />, {
5959
context,
6060
});
61-
expect(Plot.prototype.deoverlay).to.have.property("callCount", 0);
62-
expect(Plot.prototype.overlay_href).to.have.property("callCount", 1);
63-
expect(Plot.prototype.change_settings).to.have.property("callCount", 1);
61+
expect(Plot.prototype.deoverlay).to.have.property('callCount', 0);
62+
expect(Plot.prototype.overlay_href).to.have.property('callCount', 1);
63+
expect(Plot.prototype.change_settings).to.have.property('callCount', 1);
6464

6565
component.setProps({ href: hrefOne, options: options });
66-
expect(Plot.prototype.deoverlay).to.have.property("callCount", 0);
67-
expect(Plot.prototype.overlay_href).to.have.property("callCount", 1);
68-
expect(Plot.prototype.change_settings).to.have.property("callCount", 1);
66+
expect(Plot.prototype.deoverlay).to.have.property('callCount', 0);
67+
expect(Plot.prototype.overlay_href).to.have.property('callCount', 1);
68+
expect(Plot.prototype.change_settings).to.have.property('callCount', 1);
6969
});
7070

71-
it("changes settings on options prop change", () => {
72-
const element = global.document.createElement("div");
71+
it('changes settings on options prop change', () => {
72+
const element = global.document.createElement('div');
7373
const context = { plot: new Plot(element, {}) };
74-
const hrefOne = "dat/penny.prm";
74+
const hrefOne = 'dat/penny.prm';
7575

76-
sinon.spy(Plot.prototype, "overlay_bluefile");
76+
sinon.spy(Plot.prototype, 'overlay_bluefile');
7777

7878
const component = mount(<HrefLayer href={hrefOne} />, { context });
7979

8080
expect(component.props().href).to.equal(hrefOne);
8181
expect(component.instance().plot).to.not.be.undefined;
82-
expect(Plot.prototype.overlay_bluefile).to.have.property("callCount", 1);
82+
expect(Plot.prototype.overlay_bluefile).to.have.property('callCount', 1);
8383
expect(component.instance().layer).to.equal(0);
84-
expect(Plot.prototype.deoverlay).to.have.property("callCount", 0);
85-
expect(Plot.prototype.overlay_href).to.have.property("callCount", 1);
84+
expect(Plot.prototype.deoverlay).to.have.property('callCount', 0);
85+
expect(Plot.prototype.overlay_href).to.have.property('callCount', 1);
8686
expect(Plot.prototype.overlay_href.getCall(0).args).to.have.length(3);
8787
expect(Plot.prototype.overlay_href.getCall(0).args[0]).to.equal(hrefOne);
8888
expect(component.instance().plot._Gx.lyr).to.have.lengthOf(1);
8989
expect(component.instance().plot._Gx.lyr[0].drawmode).to.be.undefined;
9090

9191
const options = {
92-
drawmode: "righttoleft",
92+
drawmode: 'righttoleft',
9393
};
9494
component.setProps({ options: options });
9595
expect(component.props().href).to.equal(hrefOne);
9696
expect(component.instance().plot).to.not.be.undefined;
97-
expect(Plot.prototype.deoverlay).to.have.property("callCount", 0);
98-
expect(Plot.prototype.overlay_href).to.have.property("callCount", 1);
97+
expect(Plot.prototype.deoverlay).to.have.property('callCount', 0);
98+
expect(Plot.prototype.overlay_href).to.have.property('callCount', 1);
9999
expect(Plot.prototype.overlay_href.getCall(0).args).to.have.length(3);
100100
expect(Plot.prototype.overlay_href.getCall(0).args[0]).to.equal(hrefOne);
101101
expect(component.instance().plot._Gx.lyr).to.have.lengthOf(1);

0 commit comments

Comments
 (0)