File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ const workerForLanguage = (language: string) => {
60
60
// See also convertLangToLunrParam
61
61
62
62
// Enumerated for code splitting as Vite doesn't support dynamic strings here
63
- // We use a worker per language for because Vite doesn't support using dynamic
63
+ // We use a worker per language because Vite doesn't support using dynamic
64
64
// import in a iife Worker and Safari doesn't support module workers.
65
65
switch ( language . toLowerCase ( ) ) {
66
66
case "de" : {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { defaultInitialProject } from "./initial-project";
9
9
import { testMigrationUrl } from "./migration-test-data" ;
10
10
11
11
describe ( "DefaultHost" , ( ) => {
12
- it . skip ( "uses migration if available" , async ( ) => {
12
+ it ( "uses migration if available" , async ( ) => {
13
13
const project = await new DefaultHost (
14
14
testMigrationUrl
15
15
) . createInitialProject ( ) ;
Original file line number Diff line number Diff line change 6
6
import { isMigration , parseMigrationFromUrl } from "./migration" ;
7
7
import { testMigrationUrl } from "./migration-test-data" ;
8
8
9
- describe . skip ( "parseMigrationFromUrl" , ( ) => {
9
+ describe ( "parseMigrationFromUrl" , ( ) => {
10
10
it ( "parses valid URL" , ( ) => {
11
11
const migration = parseMigrationFromUrl ( testMigrationUrl ) ;
12
12
expect ( migration ) . toEqual ( {
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export const pyright = async (
36
36
return undefined ;
37
37
}
38
38
if ( cache ) {
39
- // This is safe to called if already initialized.
39
+ // This is safe to call if already initialized.
40
40
await cache . client . initialize ( ) ;
41
41
if ( cache . language === language ) {
42
42
return cache . client ;
You can’t perform that action at this time.
0 commit comments