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