summaryrefslogtreecommitdiffstats
path: root/cypress_test/integration_tests/desktop/impress/image_operation_spec.js
blob: 7f2a7d1701386a8a4c08823cbe4f6a4e9444963e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* global describe it require afterEach beforeEach */

var helper = require('../../common/helper');
var { insertImage, deleteImage } = require('../../common/desktop_helper');

describe('Image Operation Tests', function() {
	var testFileName = 'image_operation.odp';

	beforeEach(function() {
		helper.beforeAll(testFileName, 'impress');
	});

	afterEach(function() {
		helper.afterAll(testFileName, this.currentTest.state);
	});

	it('Insert Image',function() {
		insertImage();
	});

	it('Delete Image', function() {
		deleteImage();
	});
});