How to use the match function from assert

Find comprehensive JavaScript assert.match code examples handpicked from public code repositorys.

44
45
46
47
48
49
50
51
52
53
describe('format', () => {
  formats.forEach((value) => {
    it(`should produce an image with format ${value}`, async () => {
      subject = new iiif.Processor(`${base}/full/full/0/default.${value}`, streamResolver);
      const result = await subject.execute();
      assert.match(result.contentType, /^image\//);
    });
  });
});

fork icon4
star icon21
watch icon55

+ 3 other calls in file

1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
             'Received an error with identical name but a different ' +
             'prototype.\n\nError message:\n\nfoobar'
  }
);


// Multiple assert.match() tests.
{
  assert.throws(
    () => assert.match(/abc/, 'string'),
    {
fork icon0
star icon0
watch icon0

+ 6 other calls in file