Skip to content

Commit

Permalink
Updated location of tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
erik-sth committed Nov 2, 2023
1 parent b56bd0f commit 80d46c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/Groups.test.ts → test/Class/Groups.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Groups, Group } from '../src/Class/Groups';
import { Groups, Group } from '../../src/Class/Groups';

describe('Groups class', () => {
let groups: Groups;
Expand Down
2 changes: 1 addition & 1 deletion test/graph.test.ts → test/Class/graph.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DirectedGraph } from '../src/Class/Graph'; // Replace with your actual file path
import { DirectedGraph } from '../../src/Class/Graph'; // Replace with your actual file path

describe('DirectedGraph', () => {
it('should add nodes correctly', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/pq.test.ts → test/Class/pq.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PriorityQueue } from '../src/Class/PriorityQueue';
import { PriorityQueue } from '../../src/Class/PriorityQueue';

describe('PriorityQueue', () => {
it('should enqueue elements with proper priority and dequeue in correct order', () => {
Expand Down

0 comments on commit 80d46c6

Please sign in to comment.