File tree Expand file tree Collapse file tree
src/test/java/io/github/randomcodespace/iq/cli Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,6 +47,12 @@ playwright-report/
4747test-results /
4848# Generated explorer CSS (rebuild via: cd src/main/frontend && npm run build:explorer-css)
4949src /main /resources /static /css /explorer.css
50+ # Frontend build output copied into Spring static resources
51+ src /main /resources /static /assets /CodeGraphView- * .js
52+ src /main /resources /static /assets /index- * .js
53+ src /main /resources /static /assets /index- * .css
54+ src /main /resources /static /assets /vendor-monaco- * .js
55+ src /main /resources /static /assets /vendor-react- * .js
5056
5157# Distribution
5258* .tar.gz
Original file line number Diff line number Diff line change 33import org .junit .jupiter .api .Test ;
44import picocli .CommandLine ;
55
6+ import java .nio .file .Path ;
7+
68import static org .junit .jupiter .api .Assertions .assertEquals ;
79import static org .junit .jupiter .api .Assertions .assertNotNull ;
810
@@ -72,6 +74,6 @@ void pathNotSwallowedWhenNoUiPrecedesPath() {
7274 var cmdLine = new CommandLine (cmd );
7375 cmdLine .parseArgs ("--no-ui" , "/some/repo" );
7476 assertEquals (true , cmd .isNoUi ());
75- assertEquals ("/some/repo" , cmd .getPath (). toString ());
77+ assertEquals (Path . of ( "/some/repo" ) , cmd .getPath ());
7678 }
7779}
You can’t perform that action at this time.
0 commit comments