UNPKG

@nova-ui/dashboards

Version:

Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and

114 lines 5.46 kB
"use strict"; // © 2022 SolarWinds Worldwide, LLC. All rights reserved. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. Object.defineProperty(exports, "__esModule", { value: true }); const testing_1 = require("@angular-devkit/schematics/testing"); const schematics_1 = require("@nova-ui/bits/sdk/schematics"); describe("ng-add", () => { const runner = new testing_1.SchematicTestRunner("schematics", require.resolve("../collection.json")); let appTree; beforeEach(async () => { const workspaceOptions = { name: "workspace", newProjectRoot: "projects", version: "1.0.0", }; const appOptions = { name: "bar", inlineStyle: false, inlineTemplate: false, routing: false, style: "css", skipTests: false, standalone: false, skipPackageJson: false, }; appTree = await runner .runExternalSchematic("@schematics/angular", "workspace", workspaceOptions); appTree = await runner .runExternalSchematic("@schematics/angular", "application", appOptions, appTree); }); it("adds styles to angular.json without property", async () => { appTree.overwrite("angular.json", JSON.stringify({ projects: { bar: { architect: { build: { options: {}, }, }, }, }, })); const afterTree = await runner .runSchematic("ng-add", { project: "bar", skipModuleUpdate: true }, appTree); const file = JSON.parse((afterTree.read("angular.json") ?? "").toString("utf-8")); expect(file.projects.bar.architect.build.options.styles[0]).toEqual("./node_modules/@nova-ui/charts/bundles/css/styles.css"); }); it("does not re-add style to angular.json", async () => { appTree.overwrite("angular.json", JSON.stringify({ projects: { bar: { architect: { build: { options: { styles: [ "./node_modules/@nova-ui/bits/bundles/css/styles.css", "./node_modules/@nova-ui/charts/bundles/css/styles.css", ], }, }, }, }, }, })); const afterTree = await runner .runSchematic("ng-add", { project: "bar", skipModuleUpdate: true }, appTree); const file = JSON.parse((afterTree.read("angular.json") ?? "").toString("utf-8")); expect(file.projects.bar.architect.build.options.styles.length).toEqual(2); }); it("updates style array in angular.json", async () => { const afterTree = await runner .runSchematic("ng-add", { project: "bar", skipModuleUpdate: true }, appTree); const file = JSON.parse((afterTree.read("angular.json") ?? "").toString("utf-8")); expect(file.projects.bar.architect.build.options.styles[1]).toContain("@nova-ui/charts"); }); it("adds imports to module", async () => { const afterTree = await runner .runSchematic("ng-add", { project: "bar", skipCss: true }, appTree); const moduleFile = (afterTree.read(`/projects/bar/src/app/app-module.ts`) ?? "").toString("utf-8"); expect(moduleFile).toContain("BrowserAnimationsModule"); expect(moduleFile).toContain("NuiDashboardsModule"); }); it("updates the dependencies in package.json with the dashboards peerDependencies", async () => { const afterTree = await runner .runSchematic("ng-add", { project: "bar", skipCss: true, skipModuleUpdate: true, }, appTree); const file = JSON.parse((afterTree.read("package.json") ?? "").toString("utf-8")); const { peerDependencies } = require("../../../package.json"); Object.keys(peerDependencies).forEach((key) => { expect((0, schematics_1.omitUpperPeerDependencyVersion)(peerDependencies[key])).toEqual(file.dependencies[key], `Dependency ${key} wasn't updated`); }); }); }); //# sourceMappingURL=index.spec.js.map