Fix all existing prettier issues

This commit is contained in:
David Rodríguez
2025-10-22 15:30:36 +02:00
parent 025f8b25b1
commit 852e7fa81e
64 changed files with 501 additions and 557 deletions

View File

@@ -4,27 +4,33 @@
import VariantUnitManager from "../../../app/webpacker/js/services/variant_unit_manager";
describe("VariantUnitManager", function() {
describe("VariantUnitManager", function () {
let subject;
describe("with default units", function() {
describe("with default units", function () {
beforeAll(() => {
// Requires global var from page
global.ofn_available_units_sorted = {
"weight":{
"1.0":{"name":"g","system":"metric"},"28.35":{"name":"oz","system":"imperial"},"453.6":{"name":"lb","system":"imperial"},"1000.0":{"name":"kg","system":"metric"},"1000000.0":{"name":"T","system":"metric"}
weight: {
"1.0": { name: "g", system: "metric" },
28.35: { name: "oz", system: "imperial" },
453.6: { name: "lb", system: "imperial" },
"1000.0": { name: "kg", system: "metric" },
"1000000.0": { name: "T", system: "metric" },
},
"volume":{
"0.001":{"name":"mL","system":"metric"},"1.0":{"name":"L","system":"metric"},"1000.0":{"name":"kL","system":"metric"}
volume: {
0.001: { name: "mL", system: "metric" },
"1.0": { name: "L", system: "metric" },
"1000.0": { name: "kL", system: "metric" },
},
};
})
});
beforeEach(() => {
subject = new VariantUnitManager();
})
});
describe("getUnitName", function() {
it("returns the unit name based on the scale and unit type (weight/volume) provided", function() {
describe("getUnitName", function () {
it("returns the unit name based on the scale and unit type (weight/volume) provided", function () {
expect(subject.getUnitName(1, "weight")).toEqual("g");
expect(subject.getUnitName(1000, "weight")).toEqual("kg");
expect(subject.getUnitName(1000000, "weight")).toEqual("T");
@@ -36,8 +42,8 @@ describe("VariantUnitManager", function() {
});
});
describe("compatibleUnitScales", function() {
it("returns a sorted set of compatible scales based on the scale and unit type provided", function() {
describe("compatibleUnitScales", function () {
it("returns a sorted set of compatible scales based on the scale and unit type provided", function () {
expect(subject.compatibleUnitScales(1, "weight")).toEqual([1.0, 1000.0, 1000000.0]);
expect(subject.compatibleUnitScales(453.6, "weight")).toEqual([28.35, 453.6]);
expect(subject.compatibleUnitScales(0.001, "volume")).toEqual([0.001, 1.0, 1000.0]);
@@ -45,28 +51,31 @@ describe("VariantUnitManager", function() {
});
});
describe("should only load available units", function() {
describe("should only load available units", function () {
beforeAll(() => {
// Available units: "g,T,mL,L,kL,lb"
global.ofn_available_units_sorted = {
"weight":{
"1.0":{"name":"g","system":"metric"},"453.6":{"name":"lb","system":"imperial"},"1000000.0":{"name":"T","system":"metric"}
weight: {
"1.0": { name: "g", system: "metric" },
453.6: { name: "lb", system: "imperial" },
"1000000.0": { name: "T", system: "metric" },
},
"volume":{
"0.001":{"name":"mL","system":"metric"},"1.0":{"name":"L","system":"metric"},"1000.0":{"name":"kL","system":"metric"}
volume: {
0.001: { name: "mL", system: "metric" },
"1.0": { name: "L", system: "metric" },
"1000.0": { name: "kL", system: "metric" },
},
};
})
});
beforeEach(() => {
subject = new VariantUnitManager();
})
});
describe("compatibleUnitScales", function() {
it("returns a sorted set of compatible scales based on the scale and unit type provided", function() {
describe("compatibleUnitScales", function () {
it("returns a sorted set of compatible scales based on the scale and unit type provided", function () {
expect(subject.compatibleUnitScales(1, "weight")).toEqual([1.0, 1000000.0]);
expect(subject.compatibleUnitScales(453.6, "weight")).toEqual([453.6]);
});
});
});
});