Skip to content

Commit 6c3bad7

Browse files
committed
Move tests
Signed-off-by: worksofliam <[email protected]>
1 parent 2df56a5 commit 6c3bad7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/api/tests/connection.test.ts renamed to src/api/tests/suites/connection.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import { expect, test, describe } from 'vitest'
3-
import { getConnection } from './state'
4-
import { Tools } from '../Tools';
3+
import { getConnection } from '../state'
4+
import { Tools } from '../../Tools';
55

66
describe(`connection tests`, {concurrent: true}, () => {
77
test('sendCommand', async () => {

src/api/tests/content.test.ts renamed to src/api/tests/suites/content.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import { expect, describe, it } from 'vitest';
3-
import { getConnection } from './state';
3+
import { getConnection } from '../state';
44
import util, { TextDecoder } from 'util';
55
import tmp from 'tmp';
6-
import { Tools } from '../Tools';
6+
import { Tools } from '../../Tools';
77
import { posix } from 'path';
88

99
describe('Content Tests', {concurrent: true}, () => {

src/api/tests/debug.test.ts renamed to src/api/tests/suites/debug.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, it, expect } from 'vitest';
2-
import { getConnection } from './state';
3-
import { getJavaHome } from '../configuration/DebugConfiguration';
2+
import { getConnection } from '../state';
3+
import { getJavaHome } from '../../configuration/DebugConfiguration';
44

55
describe('Debug engine tests', () => {
66
it('Check Java versions', async () => {

src/api/tests/encoding.test.ts renamed to src/api/tests/suites/encoding.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import path from "path";
2-
import IBMi from "../IBMi";
3-
import { Tools } from "../Tools";
4-
import { IBMiObject } from "../types";
2+
import IBMi from "../../IBMi";
3+
import { Tools } from "../../Tools";
4+
import { IBMiObject } from "../../types";
55
import { describe, it, expect } from 'vitest';
6-
import { getConnection } from "./state";
6+
import { getConnection } from "../state";
77

88
const contents = {
99
'37': [`Hello world`],

0 commit comments

Comments
 (0)