Skip to content

Commit 24deccf

Browse files
authored
Merge pull request #3931 from github/koesie10/fix-storybook
Fix Storybook build
2 parents cd9dc9d + 4f934b5 commit 24deccf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,7 @@ artifacts/
2222

2323
# E2E Reports
2424
**/playwright-report/**
25-
**/test-results/**
25+
**/test-results/**
26+
27+
# Storybook artifacts
28+
**/storybook-static/**

extensions/ql-vscode/test/factories/model-editor/extension-pack.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import type { ExtensionPack } from "../../../src/model-editor/shared/extension-pack";
2-
import { join } from "path";
32

43
export function createMockExtensionPack({
54
path = "/path/to/extension-pack",
65
...data
76
}: Partial<ExtensionPack> = {}): ExtensionPack {
87
return {
98
path,
10-
yamlPath: join(path, "codeql-pack.yml"),
9+
yamlPath: `${path}/codeql-pack.yml`,
1110
name: "sql2o",
1211
version: "0.0.0",
1312
language: "java",

0 commit comments

Comments
 (0)