move profiles to /src
This commit is contained in:
@@ -11,7 +11,7 @@ jest.mock('fs', () => ({
|
||||
// Import modules after mocking
|
||||
import fs from 'fs';
|
||||
import { convertRuleToProfileRule } from '../../../src/utils/rule-transformer.js';
|
||||
import { clineProfile } from '../../../scripts/profiles/cline.js';
|
||||
import { clineProfile } from '../../../src/profiles/cline.js';
|
||||
|
||||
describe('Cline Rule Transformer', () => {
|
||||
// Set up spies on the mocked modules
|
||||
|
||||
@@ -11,7 +11,7 @@ jest.mock('fs', () => ({
|
||||
// Import modules after mocking
|
||||
import fs from 'fs';
|
||||
import { convertRuleToProfileRule } from '../../../src/utils/rule-transformer.js';
|
||||
import { cursorProfile } from '../../../scripts/profiles/cursor.js';
|
||||
import { cursorProfile } from '../../../src/profiles/cursor.js';
|
||||
|
||||
describe('Cursor Rule Transformer', () => {
|
||||
// Set up spies on the mocked modules
|
||||
|
||||
@@ -11,7 +11,7 @@ jest.mock('fs', () => ({
|
||||
// Import modules after mocking
|
||||
import fs from 'fs';
|
||||
import { convertRuleToProfileRule } from '../../../src/utils/rule-transformer.js';
|
||||
import { rooProfile } from '../../../scripts/profiles/roo.js';
|
||||
import { rooProfile } from '../../../src/profiles/roo.js';
|
||||
|
||||
describe('Roo Rule Transformer', () => {
|
||||
// Set up spies on the mocked modules
|
||||
|
||||
@@ -11,7 +11,7 @@ jest.mock('fs', () => ({
|
||||
// Import modules after mocking
|
||||
import fs from 'fs';
|
||||
import { convertRuleToProfileRule } from '../../../src/utils/rule-transformer.js';
|
||||
import { traeProfile } from '../../../scripts/profiles/trae.js';
|
||||
import { traeProfile } from '../../../src/profiles/trae.js';
|
||||
|
||||
describe('Trae Rule Transformer', () => {
|
||||
// Set up spies on the mocked modules
|
||||
|
||||
@@ -11,7 +11,7 @@ jest.mock('fs', () => ({
|
||||
// Import modules after mocking
|
||||
import fs from 'fs';
|
||||
import { convertRuleToProfileRule } from '../../../src/utils/rule-transformer.js';
|
||||
import { vscodeProfile } from '../../../scripts/profiles/vscode.js';
|
||||
import { vscodeProfile } from '../../../src/profiles/vscode.js';
|
||||
|
||||
describe('VS Code Rule Transformer', () => {
|
||||
// Set up spies on the mocked modules
|
||||
|
||||
@@ -11,7 +11,7 @@ jest.mock('fs', () => ({
|
||||
// Import modules after mocking
|
||||
import fs from 'fs';
|
||||
import { convertRuleToProfileRule } from '../../../src/utils/rule-transformer.js';
|
||||
import { windsurfProfile } from '../../../scripts/profiles/windsurf.js';
|
||||
import { windsurfProfile } from '../../../src/profiles/windsurf.js';
|
||||
|
||||
describe('Windsurf Rule Transformer', () => {
|
||||
// Set up spies on the mocked modules
|
||||
|
||||
Reference in New Issue
Block a user