We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9dc9d commit 4f934b5Copy full SHA for 4f934b5
.gitignore
@@ -22,4 +22,7 @@ artifacts/
22
23
# E2E Reports
24
**/playwright-report/**
25
-**/test-results/**
+**/test-results/**
26
+
27
+# Storybook artifacts
28
+**/storybook-static/**
extensions/ql-vscode/test/factories/model-editor/extension-pack.ts
@@ -1,13 +1,12 @@
1
import type { ExtensionPack } from "../../../src/model-editor/shared/extension-pack";
2
-import { join } from "path";
3
4
export function createMockExtensionPack({
5
path = "/path/to/extension-pack",
6
...data
7
}: Partial<ExtensionPack> = {}): ExtensionPack {
8
return {
9
path,
10
- yamlPath: join(path, "codeql-pack.yml"),
+ yamlPath: `${path}/codeql-pack.yml`,
11
name: "sql2o",
12
version: "0.0.0",
13
language: "java",
0 commit comments