Skip to content

Commit

Permalink
chore: add test package before publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
onedionys committed Mar 8, 2024
1 parent 08ab478 commit 10f29cd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const assert = require('assert');
const ImageGallery = require('../src/imageGallery');

describe('ImageGallery', function() {
describe('#renderGallery()', function() {
it('should render the image gallery with provided images', function() {
const images = ['image1.jpg', 'image2.jpg', 'image3.jpg'];
const gallery = new ImageGallery(images);
// Add test logic to check if gallery is rendered correctly
});
});

// Add more test cases for other methods as needed
});

0 comments on commit 10f29cd

Please sign in to comment.