You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
420 B
17 lines
420 B
---
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
required_packages:
|
|
- uglify-js
|
|
tests:
|
|
# Check that the main binary can be run at all
|
|
- usable:
|
|
run: uglifyjs --version
|
|
# Check that a basic expression is correctly minified
|
|
- expression:
|
|
run: test "$(echo '1 + 1'|uglifyjs --expression)" = '1+1;'
|
|
...
|