Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
zhpenkov committed Jan 24, 2025
1 parent 1e3edd6 commit 401babb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions units/utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ const fs = require("fs");
const path = require("path");
const { describe, it, expect } = require("@jest/globals");

const rootDir = path.resolve(__dirname, "../");
console.log(rootDir);

Check failure on line 7 in units/utility.js

View workflow job for this annotation

GitHub Actions / Lint scripts / run

Unexpected console statement
const theme = process.env.THEME;
const themeDir = path.resolve("../packages", theme);
console.log(themeDir);

Check failure on line 10 in units/utility.js

View workflow job for this annotation

GitHub Actions / Lint scripts / run

Unexpected console statement
const themeScss = path.resolve(themeDir, "scss");
console.log(themeScss);

Check failure on line 12 in units/utility.js

View workflow job for this annotation

GitHub Actions / Lint scripts / run

Unexpected console statement
const themeMetadata = path.resolve(themeDir, "dist", "meta", "sassdoc-data.json");
console.log(themeMetadata);

Check failure on line 14 in units/utility.js

View workflow job for this annotation

GitHub Actions / Lint scripts / run

Unexpected console statement
const data = JSON.parse(fs.readFileSync(themeMetadata));
const nodeModules = path.resolve("../node_modules");

Expand Down

0 comments on commit 401babb

Please sign in to comment.