Skip to content

Commit

Permalink
Files to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed May 11, 2024
1 parent c727935 commit e75ce9e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 20 deletions.
6 changes: 3 additions & 3 deletions test/src/files/correct.test.ts
Original file line number Diff line number Diff line change
@@ -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, "/");
Expand Down
6 changes: 3 additions & 3 deletions test/src/files/incorrect.test.ts
Original file line number Diff line number Diff line change
@@ -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, "/");
Expand Down
File renamed without changes.
13 changes: 2 additions & 11 deletions test/src/SchemaTester.ts → test/src/schema-tester.ts
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion test/src/Utillity.test.ts → test/src/utillity.test.ts
Original file line number Diff line number Diff line change
@@ -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 () {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions test/src/Validator.test.ts → test/src/validator.test.ts
Original file line number Diff line number Diff line change
@@ -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");
Expand Down

0 comments on commit e75ce9e

Please sign in to comment.