1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Change location for data files

This commit is contained in:
Kamran Ahmed
2023-02-21 12:25:58 +00:00
parent b741a0e1ee
commit b6a0255f12
2772 changed files with 30 additions and 30 deletions

View File

@@ -2,7 +2,7 @@ import path from 'node:path';
import fs from 'node:fs';
import { test, expect } from '@playwright/test';
const roadmapIds = fs.readdirSync(path.join(process.cwd(), 'src/roadmaps'));
const roadmapIds = fs.readdirSync(path.join(process.cwd(), 'src/data/roadmaps'));
test(`roadmaps`, async ({ page }) => {
await page.goto('/roadmaps');