Files to lowercase
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
import { expect } from "chai";
|
import { expect } from "chai";
|
||||||
import { Github } from "../Github";
|
import { Github } from "../github";
|
||||||
import { Schema } from "../SchemaTester";
|
import { Schema } from "../schema-tester";
|
||||||
import { Files } from "../Utillity";
|
import { Files } from "../utillity";
|
||||||
|
|
||||||
describe("test correct files", function () {
|
describe("test correct files", function () {
|
||||||
const folder = Files.CorrectFilesFolder().replace(/\\/gi, "/");
|
const folder = Files.CorrectFilesFolder().replace(/\\/gi, "/");
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { expect } from "chai";
|
import { expect } from "chai";
|
||||||
import { Github } from "../Github";
|
import { Github } from "../github";
|
||||||
import { Schema } from "../SchemaTester";
|
import { Schema } from "../schema-tester";
|
||||||
import { Files } from "../Utillity";
|
import { Files } from "../utillity";
|
||||||
|
|
||||||
describe("test incorrect files", function () {
|
describe("test incorrect files", function () {
|
||||||
const folder = Files.InCorrectFilesFolder().replace(/\\/gi, "/");
|
const folder = Files.InCorrectFilesFolder().replace(/\\/gi, "/");
|
||||||
|
|||||||
@@ -1,17 +1,8 @@
|
|||||||
import {
|
import { getLanguageService, LanguageService, LanguageSettings, SchemaConfiguration, TextDocument, JSONDocument, Diagnostic, Thenable } from "vscode-json-languageservice";
|
||||||
getLanguageService,
|
|
||||||
LanguageService,
|
|
||||||
LanguageSettings,
|
|
||||||
SchemaConfiguration,
|
|
||||||
TextDocument,
|
|
||||||
JSONDocument,
|
|
||||||
Diagnostic,
|
|
||||||
Thenable,
|
|
||||||
} from "vscode-json-languageservice";
|
|
||||||
import * as url from "url";
|
import * as url from "url";
|
||||||
import * as data from "../../vscode-settings.json";
|
import * as data from "../../vscode-settings.json";
|
||||||
import { readFileSync } from "fs";
|
import { readFileSync } from "fs";
|
||||||
import { Files } from "./Utillity";
|
import { Files } from "./utillity";
|
||||||
|
|
||||||
export namespace Schema {
|
export namespace Schema {
|
||||||
const workspaceContext = {
|
const workspaceContext = {
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { expect } from "chai";
|
import { expect } from "chai";
|
||||||
import { DummyFiles } from "../../src/main";
|
import { DummyFiles } from "../../src/main";
|
||||||
import { Files } from "./Utillity";
|
import { Files } from "./utillity";
|
||||||
|
|
||||||
describe("Files", function () {
|
describe("Files", function () {
|
||||||
it("Root", function () {
|
it("Root", function () {
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
import path = require("path");
|
import path = require("path");
|
||||||
import { Files } from "./Utillity";
|
import { Files } from "./utillity";
|
||||||
import * as fs from "fs";
|
import * as fs from "fs";
|
||||||
import * as JSONC from "comment-json";
|
import * as JSONC from "comment-json";
|
||||||
import { expect } from "chai";
|
import { expect } from "chai";
|
||||||
import { ErrorAnnotation, Github } from "./Github";
|
import { ErrorAnnotation, Github } from "./github";
|
||||||
|
|
||||||
describe("Validate", function () {
|
describe("Validate", function () {
|
||||||
const folder = path.join(Files.TestFolder(), "..", "source");
|
const folder = path.join(Files.TestFolder(), "..", "source");
|
||||||
Reference in New Issue
Block a user