Added pixelRatio option to override canvas upscaling. Resolves #876, test included...
[dygraphs.git] / scripts / check-no-only.sh
CommitLineData
1f98bcec 1#!/bin/bash
c0e7b625 2# Checks that no ".only" has made it into tests. This should never be committed,
1f98bcec
DV
3# since it will disable the vast majority of tests.
4
5if grep -R '\.only(' auto_tests/tests; then
6 echo 'Remove .only from tests before committing.'
7 exit 1
8fi
9
10exit 0