Skip to content

Commit

Permalink
test: format descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Oct 14, 2024
1 parent f634171 commit 7e8dcb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions test/unit/audio-nodes/media-stream-audio-source-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ describe('MediaStreamAudioSourceNode', () => {

describe('without any parameters', () => {
for (const isAudioStreamTrackRemoved of [true, false]) {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not' : ''} removed`, () => {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not ' : ''}removed`, () => {
let renderer;

beforeEach(function () {
Expand Down Expand Up @@ -610,7 +610,7 @@ describe('MediaStreamAudioSourceNode', () => {

describe('with a connection from the given output', () => {
for (const isAudioStreamTrackRemoved of [true, false]) {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not' : ''} removed`, () => {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not ' : ''}removed`, () => {
let renderer;

beforeEach(function () {
Expand Down Expand Up @@ -658,7 +658,7 @@ describe('MediaStreamAudioSourceNode', () => {

describe('with a connection to the given destination', () => {
for (const isAudioStreamTrackRemoved of [true, false]) {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not' : ''} removed`, () => {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not ' : ''}removed`, () => {
let renderer;

beforeEach(function () {
Expand Down
6 changes: 3 additions & 3 deletions test/unit/audio-nodes/media-stream-track-audio-source-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ describe('MediaStreamTrackAudioSourceNode', () => {

describe('without any parameters', () => {
for (const isAudioStreamTrackRemoved of [true, false]) {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not' : ''} removed`, () => {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not ' : ''}removed`, () => {
let renderer;

beforeEach(function () {
Expand Down Expand Up @@ -516,7 +516,7 @@ describe('MediaStreamTrackAudioSourceNode', () => {

describe('with a connection from the given output', () => {
for (const isAudioStreamTrackRemoved of [true, false]) {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not' : ''} removed`, () => {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not ' : ''}removed`, () => {
let renderer;

beforeEach(function () {
Expand Down Expand Up @@ -566,7 +566,7 @@ describe('MediaStreamTrackAudioSourceNode', () => {

describe('with a connection to the given destination', () => {
for (const isAudioStreamTrackRemoved of [true, false]) {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not' : ''} removed`, () => {
describe(`with an audio track that gets ${isAudioStreamTrackRemoved ? 'not ' : ''}removed`, () => {
let renderer;

beforeEach(function () {
Expand Down

0 comments on commit 7e8dcb7

Please sign in to comment.