@onlineapps/service-validator-core 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/jest.config.js CHANGED
@@ -7,7 +7,7 @@ module.exports = {
7
7
  '!src/**/*.spec.js'
8
8
  ],
9
9
  testMatch: [
10
- '<rootDir>/test/**/*.test.js'
10
+ '<rootDir>/tests/**/*.test.js'
11
11
  ],
12
12
  coverageThreshold: {
13
13
  global: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/service-validator-core",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Core validation logic for microservices",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -35,7 +35,7 @@ class ValidationProofSchema {
35
35
  type: 'string',
36
36
  required: true,
37
37
  description: 'Name of the validator that generated the proof',
38
- example: '@onlineapps/conn-e2e-testing'
38
+ example: '@onlineapps/conn-orch-validator'
39
39
  },
40
40
  validatorVersion: {
41
41
  type: 'string',
@@ -1,6 +1,6 @@
1
1
  const ValidationCore = require('../../src/index');
2
2
 
3
- describe('Validation Flow Component Tests', () => {
3
+ describe('Validation Flow Component Tests @component', () => {
4
4
  let validationCore;
5
5
 
6
6
  beforeEach(() => {
@@ -2,7 +2,7 @@ const ValidationCore = require('../../src/index');
2
2
  const fs = require('fs').promises;
3
3
  const path = require('path');
4
4
 
5
- describe('ValidationCore Integration Tests', () => {
5
+ describe('ValidationCore Integration Tests @integration', () => {
6
6
  let validationCore;
7
7
 
8
8
  beforeEach(() => {
@@ -1,6 +1,6 @@
1
1
  const ValidationCore = require('../../src/index');
2
2
 
3
- describe('ValidationCore Unit Tests', () => {
3
+ describe('ValidationCore Unit Tests @unit', () => {
4
4
  let validationCore;
5
5
 
6
6
  beforeEach(() => {