Browse Source

PROD-1221: Wording improvements

Blake Schneider 5 years ago
parent
commit
44808d66fd

+ 4 - 4
__tests__/integration/end-to-end.spec.js

@@ -10,9 +10,9 @@ const app = require('../../server');
 const { sequelize, Ven: VenDb } = require('../../db');
 const { port } = require('../../config');
 
-describe('VEN registration', function() {
+describe('VEN to VTN interactions', function() {
 
-  describe('successful registration and event retrieval', async function() {
+  describe('registration and event retrieval', async function() {
 
     let clock;
 
@@ -67,7 +67,7 @@ describe('VEN registration', function() {
 
   });
 
-  describe('successful poll', async function() {
+  describe('poll', async function() {
     let ven;
 
     let clock;
@@ -98,7 +98,7 @@ describe('VEN registration', function() {
 
   });
 
-  describe('successful optIn', async function() {
+  describe('optIn', async function() {
 
     let clock;
 

+ 1 - 1
__tests__/unit/processes/event.spec.js

@@ -66,7 +66,7 @@ describe('Event', function() {
       expect(pollResponse2.events.length).to.eql(1);
     });
 
-    it('should return not return an opted event in subsequent poll response', async () => {
+    it('should not return an opted event in subsequent poll response', async () => {
       const venId = oadrPoll1.venId;
       const commonName = v4().replace(/-/g, '').substring(0, 12);
       const pollResponse1 = await rewired.pollForEvents(oadrPoll1, commonName, venId);