mirror of https://github.com/waku-org/js-waku.git
Rename node only suites
This commit is contained in:
parent
928d888ad8
commit
c990660fb9
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)}`);
|
||||
|
|
Loading…
Reference in New Issue