Rename node only suites

This commit is contained in:
Franck Royer 2021-09-24 17:15:46 +10:00
parent 928d888ad8
commit c990660fb9
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
4 changed files with 7 additions and 5 deletions

View File

@ -17,7 +17,7 @@ import { generateSymmetricKey } from './waku_message/version_1';
const TestContentTopic = '/test/1/waku/utf8';
describe('Waku Dial', function () {
describe('Waku Dial [node only]', function () {
let waku: Waku;
let waku2: Waku;
let nimWaku: NimWaku;

View File

@ -10,7 +10,7 @@ import { WakuMessage } from '../waku_message';
const TestContentTopic = '/test/1/waku-light-push/utf8';
describe('Waku Light Push', () => {
describe('Waku Light Push [node only]', () => {
let waku: Waku;
let nimWaku: NimWaku;

View File

@ -26,7 +26,7 @@ const dbg = debug('waku:test:message');
const TestContentTopic = '/test/1/waku-message/utf8';
describe('Waku Message: Node only', function () {
describe('Waku Message [node only]', function () {
describe('Interop: Nim', function () {
let waku: Waku;
let nimWaku: NimWaku;

View File

@ -18,8 +18,10 @@ const log = debug('waku:test');
const TestContentTopic = '/test/1/waku-relay/utf8';
describe('Waku Relay', () => {
describe('js only', () => {
describe('Waku Relay [node only]', () => {
// Node needed as we don't have a way to connect 2 js waku
// nodes in the browser yet
describe('2 js nodes', () => {
afterEach(function () {
if (this.currentTest?.state === 'failed') {
console.log(`Test failed, log file name is ${makeLogFileName(this)}`);