Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh authored and astrobot-houston committed Feb 12, 2024
1 parent 0fc51cf commit aa1198f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/language-server/test/check/check.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect } from 'chai';
import { before, describe, it } from 'mocha';
import os from 'node:os';
import path from 'node:path';
import { expect } from 'chai';
import { before, describe, it } from 'mocha';
import { AstroCheck, CheckResult } from '../../dist/check.js';

describe('AstroCheck', async () => {
Expand Down
8 changes: 4 additions & 4 deletions packages/language-server/test/typescript/diagnostics.test.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import * as path from 'path';
import {
type Diagnostic,
DiagnosticSeverity,
FullDocumentDiagnosticReport,
Range,
type Diagnostic,
} from '@volar/language-server';
import { expect } from 'chai';
import { before, describe, it } from 'mocha';
import * as path from 'path';
import { getLanguageServer, type LanguageServer } from '../server.js';
import { type LanguageServer, getLanguageServer } from '../server.js';

describe('TypeScript - Diagnostics', async () => {
let languageServer: LanguageServer;
Expand Down Expand Up @@ -74,7 +74,7 @@ describe('TypeScript - Diagnostics', async () => {
range: Range.create(5, 5, 5, 16),
severity: DiagnosticSeverity.Error,
source: 'ts',
}
},
]);
});

Expand Down

0 comments on commit aa1198f

Please sign in to comment.