Skip to content

Commit

Permalink
fixing imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmachuca committed Dec 25, 2024
1 parent 0138e13 commit cdb0e50
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion spec/testsClassFactorySpec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
/* eslint-disable no-undef */
import {Class, ClassFactory, logger, Package, __make_global__, _top, _QC_PACKAGES, _QC_CLASSES, global} from "../src/qcobjects.ts";
import {Class, ClassFactory, logger, Package, __make_global__, _top, _QC_PACKAGES, _QC_CLASSES, global} from "../src/qcobjects";

Check failure on line 3 in spec/testsClassFactorySpec.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module '../src/qcobjects' or its corresponding type declarations.

describe("qcobjects", function () {
logger.debugEnabled=true;
Expand Down
2 changes: 1 addition & 1 deletion spec/testsConfigSpec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
/* eslint-disable no-undef */
import {CONFIG, logger} from "../src/qcobjects.ts";
import {CONFIG, logger} from "../src/qcobjects";

Check failure on line 3 in spec/testsConfigSpec.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module '../src/qcobjects' or its corresponding type declarations.

describe("qcobjects", function () {
logger.debugEnabled=true;
Expand Down
2 changes: 1 addition & 1 deletion spec/testsGlobalFeaturesSpec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

import { __getType__, logger, global } from "../src/qcobjects.ts";
import { __getType__, logger, global } from "../src/qcobjects";

Check failure on line 3 in spec/testsGlobalFeaturesSpec.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module '../src/qcobjects' or its corresponding type declarations.

/* eslint-disable no-undef */

Expand Down
2 changes: 1 addition & 1 deletion spec/testsSpec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

import { _DataStringify, Class, ClassFactory, Component, CONFIG, Effect, logger, New, global, InheritClass, __getType__, _QC_CLASSES } from "../src/qcobjects.ts";
import { _DataStringify, Class, ClassFactory, Component, CONFIG, Effect, logger, New, global, InheritClass, __getType__, _QC_CLASSES } from "../src/qcobjects";

Check failure on line 3 in spec/testsSpec.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module '../src/qcobjects' or its corresponding type declarations.


/* eslint-disable no-undef */
Expand Down
2 changes: 1 addition & 1 deletion spec/testsTypeSpec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

import { __getType__, Class, ClassFactory, logger } from "../src/qcobjects.ts";
import { __getType__, Class, ClassFactory, logger } from "../src/qcobjects";

Check failure on line 3 in spec/testsTypeSpec.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module '../src/qcobjects' or its corresponding type declarations.

/* eslint-disable no-undef */

Expand Down

0 comments on commit cdb0e50

Please sign in to comment.