Skip to content

Commit

Permalink
fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Sep 13, 2024
1 parent e54e8d9 commit 5fad02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/get_test_infos/dir_to_test_info.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ export function dirToTestInfo(dir) {
}

function getType(dir) {
if (dir.includes('/examples/')) return 'ex';
if (dir.includes('examples/')) return 'ex';
if (dir.includes('/end_to_end/')) return 'e2e';
if (dir.includes('/property/')) return 'prop';
return '';
}

function generateDisplayPath(path) {
const replacements = {
example: 'ex',
examples: 'ex',
property: 'prop',
end_to_end: 'e2e',
functional_syntax: 'func',
Expand Down

0 comments on commit 5fad02a

Please sign in to comment.