Skip to content

Commit

Permalink
insert all aas-server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raronpxcsw committed Oct 8, 2023
1 parent 308cfda commit f6052e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { RegisterRoutes } from '../../app/routes/routes.js';
import { Authentication } from '../../app/controller/authentication.js';
import { errorHandler } from '../assets/error-handler.js';

describe.skip('ContainersController', function () {
describe('ContainersController', function () {
let app: Express;
let logger: Logger;
let auth: jest.Mocked<AuthService>;
Expand Down
2 changes: 1 addition & 1 deletion projects/aas-server/src/test/image-processing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Jimp from 'jimp';
import { ImageProcessing } from '../app/image-processing.js';
import { describe, it, expect } from '@jest/globals';

describe.skip('image processing', function () {
describe('image processing', function () {
it('resizes an image to 128 x 128 pixels', async function () {
const source = fs.createReadStream('./src/test/assets/thumbnail.jpg');
const stream = await ImageProcessing.resizeAsync(source, 128, 128);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { Logger } from '../../../app/logging/logger.js';
import { createSpyObj } from '../../utils.js';
import { describe, beforeEach, it, expect, jest } from '@jest/globals';

describe.skip('AasxServerV3', function () {
describe('AasxServerV3', function () {
let logger: Logger;
let server: AasxServerV3;

Expand Down

0 comments on commit f6052e9

Please sign in to comment.